(coordinator_noop=True)
| 51 | |
| 52 | |
| 53 | def _setup_config_opts(coordinator_noop=True): |
| 54 | reset() |
| 55 | |
| 56 | try: |
| 57 | _register_config_opts() |
| 58 | except Exception as e: |
| 59 | print(e) |
| 60 | # Some scripts register the options themselves which means registering them again will |
| 61 | # cause a non-fatal exception |
| 62 | return |
| 63 | |
| 64 | _override_config_opts(coordinator_noop=coordinator_noop) |
| 65 | |
| 66 | |
| 67 | def _override_config_opts(coordinator_noop=False): |
no test coverage detected