Skip to content

Commit

Permalink
Merge pull request #17 from Jennifer-John/bugfix-content-type
Browse files Browse the repository at this point in the history
[BugFix] Fix content type header
  • Loading branch information
Jennifer-John authored Apr 23, 2024
2 parents d22c760 + 582be6f commit 8f26a6c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# PyPowerFlex Change Log

## Version 1.11.0 - released on 30/04/24
- Added support to query selected statistics to all relevant objects/entities from PowerFlex Manager.

## Version 1.10.0 - released on 29/03/24
- Added support for retrieving all the firmware repository, validating, deploying, editing, adding nodes and deleting a resource group from PowerFlex Manager.

Expand Down
2 changes: 1 addition & 1 deletion PyPowerFlex/base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def send_request(self, method, url, params=None, **url_params):
}
if utils.is_version_3(version):
request_params['auth'] = (self.configuration.username, self.token.get())
request_params['headers'] = None
del request_params['headers']['Authorization']

if method in [self.PUT, self.POST]:
request_params['data'] = utils.prepare_params(params)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='PyPowerFlex',
version='1.10.0',
version='1.11.0',
description='Python library for Dell PowerFlex',
author='Ansible Team at Dell',
author_email='ansible.team@dell.com',
Expand Down

0 comments on commit 8f26a6c

Please sign in to comment.