~appscale-maintainers/appscale/1.4

« back to all changes in this revision

Viewing changes to AppDB/soap_server.py

  • Committer: Chris Bunch
  • Date: 2010-09-02 23:00:22 UTC
  • Revision ID: cgb@cs.ucsb.edu-20100902230022-xxsv5ro79tr6znw7
changed status file location to be compatible with deb package installed appscale, and changed exponential timeout on soap server to be linear - extremely long timeouts were becoming a hassle

Show diffs side-by-side

added added

removed removed

Lines of Context:
1109
1109
      print error
1110
1110
      logger.info(error)
1111
1111
      time.sleep(timeout)
1112
 
      timeout = timeout * 2
 
1112
      #timeout = timeout * 2
1113
1113
      continue
1114
1114
    app_schema = db.get_schema(APP_TABLE)
1115
1115
    if app_schema[0] in ERROR_CODES:
1120
1120
      print error
1121
1121
      logger.info(error)
1122
1122
      time.sleep(timeout)
1123
 
      timeout = timeout * 2
 
1123
      #timeout = timeout * 2
1124
1124
      continue
1125
1125
    break
1126
1126