The call to driver.get_replication_updates in manager.py
omitted the context argument from the call.
This fixes that by adding the context argument to the call.
Change-Id: I1e59e4a7e64fee8f26ac27a3eb79683d7bccdce4
Closes-Bug: #
1489931
# We want to leverage some of the same update model
# that we have in the targets update call
- replication_updates = self.driver.get_replication_updates()
+ replication_updates = (
+ self.driver.get_replication_updates(context))
for update in replication_updates:
pass