8000 fixed a bug that materializedNow flag is not passed to server correctly · Kogi13/server-client-python@4cae50e · GitHub
[go: up one dir, main page]

Skip to content

Commit 4cae50e

Browse files
author
bzhang
committed
fixed a bug that materializedNow flag is not passed to server correctly
1 parent ad83f80 commit 4cae50e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tableauserverclient/server/request_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def update_req(self, workbook_item):
387387
materialized_views_element = ET.SubElement(workbook_element, 'materializedViewsEnablementConfig')
388388
materialized_views_element.attrib['materializedViewsEnabled'] = str(materialized_views_config
389389
["materialized_views_enabled"]).lower()
390-
materialized_views_element.attrib['runMaterializationNow'] = str(materialized_views_config
390+
materialized_views_element.attrib['materializeNow'] = str(materialized_views_config
391391
["run_materialization_now"]).lower()
392392

393393
return ET.tostring(xml_request)

0 commit comments

Comments
 (0)
0