You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code flow item = server.workbooks.get_by_id(book_id[1]) server.workbooks.populate_connections(item) print item.connections[0].id item.connections[0].server_address = 'server_address' server.workbooks.update(item)
When I re-request the same workbook, and query the connection server addresses, they have not been updated.
This appears to be caused by workbook.update() calling the Update Workbook endpoint, but not able to call Update Workbook Connection endpoint, and there isn't a workbook.update_connections (or equivalent).
The text was updated successfully, but these errors were encountered:
Per #148, an option for updating workbook connections.
Includes documentation updates and support for username, port, address, password, and embedded.
Patch by @cmtoomey
Per #148, an option for updating workbook connections.
Includes documentation updates and support for username, port, address, password, and embedded.
Patch by @cmtoomey
This is the code flow
item = server.workbooks.get_by_id(book_id[1]) server.workbooks.populate_connections(item) print item.connections[0].id item.connections[0].server_address = 'server_address' server.workbooks.update(item)
When I re-request the same workbook, and query the connection server addresses, they have not been updated.
This appears to be caused by workbook.update() calling the Update Workbook endpoint, but not able to call Update Workbook Connection endpoint, and there isn't a workbook.update_connections (or equivalent).
The text was updated successfully, but these errors were encountered: