We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7cdb33 commit 5356dc2Copy full SHA for 5356dc2
tableauserverclient/server/endpoint/datasources_endpoint.py
@@ -190,7 +190,8 @@ def update_connection(
190
def refresh(self, datasource_item: DatasourceItem, incremental: bool = False) -> JobItem:
191
id_ = getattr(datasource_item, "id", datasource_item)
192
url = f"{self.baseurl}/{id_}/refresh"
193
- refresh_req = RequestFactory.Task.refresh_req(incremental)
+ # refresh_req = RequestFactory.Task.refresh_req(incremental)
194
+ refresh_req = RequestFactory.Empty.empty_req()
195
server_response = self.post_request(url, refresh_req)
196
new_job = JobItem.from_response(server_response.content, self.parent_srv.namespace)[0]
197
return new_job
0 commit comments