(self, command_args)
| 911 | |
| 912 | @contextmanager |
| 913 | def fail_point(self, command_args): |
| 914 | self.configure_fail_point(client_context.client, command_args) |
| 915 | try: |
| 916 | yield |
| 917 | finally: |
| 918 | self.configure_fail_point(client_context.client, command_args, off=True) |
| 919 | |
| 920 | @contextmanager |
| 921 | def fork( |