Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2015
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. @contextlib.contextmanager
  2. def mutated_migration_context(self):
  3. original = instance.numa_topology
  4. self.apply_migration_context()
  5. try:
  6. yield
  7. finally:
  8. instance.numa_topology = original
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement