Is your feature request related to a problem? Please describe.
OperationsSession has no way of enabling waitForEvents on the operation.
Describe the solution you'd like
Expose the operations wait_for_event to the OperationsSession so that you can do the commit with wait_for_events=True
op = OperationsSession()
...
op.commit(wait_for_events=True)
Additional context
This does not wait for the operations themselves to complete, but skips waiting for the events that spawn from it to have all been handled server-side.
Is your feature request related to a problem? Please describe.
OperationsSession has no way of enabling
waitForEventson the operation.Describe the solution you'd like
Expose the operations
wait_for_eventto theOperationsSessionso that you can do thecommitwithwait_for_events=TrueAdditional context
This does not wait for the operations themselves to complete, but skips waiting for the events that spawn from it to have all been handled server-side.