10000 Release 0.5.1 by graysonarts · Pull Request #228 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

Release 0.5.1 #228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 0.5 (11 Sept 2017)
## 0.5.1 (21 Sept 2017

* Fix a critical issue caused by #224 that was the result of lack of test coverage (#226)

## 0.5 (20 Sept 2017)

* Added revision settings to update site (#187)
* Added support for certified data sources (#189)
Expand Down
3 changes: 2 additions & 1 deletion tableauserverclient/server/endpoint/datasources_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def populate_connections(self, datasource_item):
raise MissingRequiredFieldError(error)
url = '{0}/{1}/connections'.format(self.baseurl, datasource_item.id)
server_response = self.get_request(url)
datasource_item._set_connections(ConnectionItem.from_response(server_response.content))
datasource_item._set_connections(
ConnectionItem.from_response(server_response.content, self.parent_srv.namespace))
logger.info('Populated connections for datasource (ID: {0})'.format(datasource_item.id))

# Delete 1 datasource by id
Expand Down
0