Skip to content

Commit

Permalink
Merge branch 'main' into fix/correlator-issue-242
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Rijo Cedeno <[email protected]>
  • Loading branch information
zFernand0 authored Jan 4, 2024
2 parents 7eadcdb + 6678663 commit 5997182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil

- Fixed `create_data_set` to accept "FBA", "FBM", "VBA", "VBM" as valid recfm [#240](https://github.com/zowe/zowe-client-python-sdk/issues/240)
- Fixed an issue with `list_jobs` user correlator parameter [#242](https://github.com/zowe/zowe-client-python-sdk/issues/242)
- Return response instead of raw from streamed requests [#245](https://github.com/zowe/zowe-client-python-sdk/pull/245)

## `1.0.0-dev12`

Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def perform_streamed_request(self, method, request_arguments, expected_code=[200
self.__validate_method()
self.__send_request(stream=True)
self.__validate_response()
return self.response.raw
return self.response

def __validate_method(self):
"""Check if the input request method for the request is supported.
Expand Down

0 comments on commit 5997182

Please sign in to comment.