コード例 #1
0
ファイル: server.py プロジェクト: eescriba/script-server
 def get(self, user, execution_id):
     running = self.application.execution_service.is_running(
         execution_id, user)
     self.write(external_model.running_flag_to_status(running))
コード例 #2
0
ファイル: server.py プロジェクト: shankar-moeng/script-server
    def get(self, execution_id):
        validate_execution_id(execution_id, self, only_active=False)

        running = self.application.execution_service.is_running(execution_id)
        self.write(external_model.running_flag_to_status(running))
コード例 #3
0
ファイル: server.py プロジェクト: bugy/script-server
    def get(self, execution_id):
        validate_execution_id(execution_id, self, only_active=False)

        running = self.application.execution_service.is_running(execution_id)
        self.write(external_model.running_flag_to_status(running))