Skip to content

Commit

Permalink
Merge pull request #166 from devingoodsell/fix-http-task-body
Browse files Browse the repository at this point in the history
Added body to attribute map so it can be set via the code.
  • Loading branch information
gardusig authored May 16, 2023
2 parents e01cab2 + 4f8a5cd commit 98ea476
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/conductor/client/workflow/task/http_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class HttpInput:
'_content_type': 'str',
'_connection_time_out': 'int',
'_read_timeout': 'int',
'_body': 'str',
}

attribute_map = {
Expand All @@ -36,6 +37,7 @@ class HttpInput:
'_content_type': 'contentType',
'_connection_time_out': 'connectionTimeOut',
'_read_timeout': 'readTimeOut',
'_body': 'body',
}

def __init__(self,
Expand Down

0 comments on commit 98ea476

Please sign in to comment.