From b51ce0a539b913c3a5f406dd01c0d81d454c01e8 Mon Sep 17 00:00:00 2001 From: Shiva <65760360+shiva-moorthy@users.noreply.github.com> Date: Tue, 27 Oct 2020 05:25:45 +0530 Subject: [PATCH] minor bug on response format - missing mandatory logs attribute (#1930) Co-authored-by: shiva-moorthy --- client/python/conductor/ConductorWorker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/python/conductor/ConductorWorker.py b/client/python/conductor/ConductorWorker.py index 5d5879a4bc..b5d1eab114 100644 --- a/client/python/conductor/ConductorWorker.py +++ b/client/python/conductor/ConductorWorker.py @@ -129,7 +129,7 @@ def start(self, taskType, exec_function, wait, domain=None): def exc(taskType, inputData, startTime, retryCount, status, callbackAfterSeconds, pollCount): print('Executing the function') - return {'status': 'COMPLETED', 'output': {}} + return {'status': 'COMPLETED', 'output': {}, 'logs': []} def main():