8000 Merge pull request #228 from RussTheAerialist/master · sfarr15/server-client-python@43232fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 43232fb

Browse files
author
Russell Hay
authored
Merge pull request tableau#228 from RussTheAerialist/master
Release 0.5.1
2 parents ada7dbc + c138764 commit 43232fb

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## 0.5 (11 Sept 2017)
1+
## 0.5.1 (21 Sept 2017
2+
3+
* Fix a critical issue caused by #224 that was the result of lack of test coverage (#226)
4+
5+
## 0.5 (20 Sept 2017)
26

37
* Added revision settings to update site (#187)
48
* Added support for certified data sources (#189)

tableauserverclient/server/endpoint/datasources_endpoint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def populate_connections(self, datasource_item):
5757
raise MissingRequiredFieldError(error)
5858
url = '{0}/{1}/connections'.format(self.baseurl, datasource_item.id)
5959
server_response = self.get_request(url)
60-
datasource_item._set_connections(ConnectionItem.from_response(server_response.content))
60+
datasource_item._set_connections(
61+
ConnectionItem.from_response(server_response.content, self.parent_srv.namespace))
6162
logger.info('Populated connections for datasource (ID: {0})'.format(datasource_item.id))
6263

6364
# Delete 1 datasource by id

0 commit comments

Comments
 (0)
0