Skip to content

Commit

Permalink
Merge pull request #219 from dyvenia/dev
Browse files Browse the repository at this point in the history
Release 0.2.14 PR
  • Loading branch information
m-paz authored Dec 1, 2021
2 parents 814bc8d + 062225a commit 387b7da
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.14]
### Fixed
- authorization issue within `CloudForCustomers` source

## [0.2.13]
### Added
- Added support for file path to `CloudForCustomersReportToADLS` flow
Expand Down
2 changes: 1 addition & 1 deletion tests/test_viadot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.2.13"
assert __version__ == "0.2.14"
2 changes: 1 addition & 1 deletion viadot/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.13"
__version__ = "0.2.14"
5 changes: 2 additions & 3 deletions viadot/sources/cloud_for_customers.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ def __init__(
self.query_endpoint = endpoint
self.params = params or {}
self.params["$format"] = "json"

if self.credentials:
self.auth = (self.credentials["username"], self.credentials["password"])
if credentials:
self.auth = (credentials["username"], credentials["password"])
else:
self.auth = (None, None)

Expand Down

0 comments on commit 387b7da

Please sign in to comment.