Skip to content

Commit

Permalink
minor bug on response format - missing mandatory logs attribute (Netf…
Browse files Browse the repository at this point in the history
…lix#1930)

Co-authored-by: shiva-moorthy <shiva-moorthy@users.noreply.github.com>
  • Loading branch information
shiva-moorthy and shiva-moorthy authored Oct 26, 2020
1 parent 8bd3128 commit b51ce0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/python/conductor/ConductorWorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit b51ce0a

Please sign in to comment.