Beispiel #1
0
 def unlock_server(self):
     if self.server_available:
         req = UpdateExperimentServerRequest()
         req.unlock_experiment = True
         req.uid = self.experiment_uid
         self.update_server(req)
Beispiel #2
0
 def ping_server(self):
     if self.server_available:
         req = UpdateExperimentServerRequest()
         req.keep_alive = True
         req.uid = self.experiment_uid
         self.update_server(req)