Skip to content

Commit

Permalink
Merge pull request #15 from lmsohamdeshmukh/v2_dev
Browse files Browse the repository at this point in the history
Bearer token input corrected
  • Loading branch information
mukundneharkar committed May 24, 2022
2 parents 5058d3f + f01d87d commit 9199916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logicmonitor_data_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def check_bearertoken(self,bearertoken):
raise ValueError(
'Authentication must provide Bearer token'
)
self._bearertoken = bearertoken
self._bearertoken = "Bearer " + bearertoken
self._authentication['type'] = 'bearertoken'

@property
Expand Down

0 comments on commit 9199916

Please sign in to comment.