Ignore:
Timestamp:
Apr 26, 2010 6:10:57 AM (14 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-3.01, version-3.02
Children:
05fceef
Parents:
d8442da
Message:

More attempts to make the SSL more reliable on users. Not completely
successful.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/federation/emulab_access.py

    rd8442da r2ee4226  
    172172
    173173        self.call_SetValue = service_caller('SetValue')
    174         self.call_GetValue = service_caller('GetValue')
     174        self.call_GetValue = service_caller('GetValue', log=self.log)
    175175
    176176        if not config.has_option("allocate", "uri"):
     
    13071307        """
    13081308
    1309         call_SetValue = service_caller('SetValue', log=self.log)
    13101309        for c in connInfo:
    13111310            for p in [ p for p in c.get('parameter', []) \
     
    13211320                        self.log.debug("Setting %s to %s on %s" % \
    13221321                                (k, value, surl))
    1323                         call_SetValue(surl, req, cf)
     1322                        self.call_SetValue(surl, req, cf)
    13241323                    else:
    13251324                        self.log.error("Bad export request: %s" % p)
     
    13311330                        self.log.debug("Setting %s to %s on %s" % \
    13321331                                (k, self.ssh_port, surl))
    1333                         call_SetValue(surl, req, cf)
     1332                        self.call_SetValue(surl, req, cf)
    13341333                    else:
    13351334                        self.log.error("Bad export request: %s" % p)
     
    13561355                    self.log.debug("Waiting for %s (%s) from %s" % \
    13571356                            (name, key, store))
    1358                     call_GetValue = service_caller('GetValue')
    1359                     r = call_GetValue(store, req, cf)
     1357                    r = self.call_GetValue(store, req, cf)
    13601358                    r = r.get('GetValueResponseBody', None)
    13611359                    if r :
Note: See TracChangeset for help on using the changeset viewer.