Changeset 5900035 in rattail
- Timestamp:
- 10/31/2022 09:39:51 PM (3 months ago)
- Branches:
- master
- Children:
- 4868a32
- Parents:
- a2e54d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rattail/luigi/handler.py
ra2e54d9 r5900035 50 50 def get_supervisor_process_name(self, require=False, **kwargs): 51 51 getter = self.config.require if require else self.config.get 52 return getter(' luigi', 'scheduler.supervisor_process_name')52 return getter('rattail.luigi', 'scheduler.supervisor_process_name') 53 53 54 54 def restart_supervisor_process(self, name=None, **kwargs): … … 74 74 # no proxy, but we can still try command line 75 75 # TODO: should rename this setting at some point? 76 cmd = self.config.get(' luigi', 'scheduler.restart_command')76 cmd = self.config.get('rattail.luigi', 'scheduler.restart_command') 77 77 if cmd: 78 78 cmd = self.config.parse_list(cmd)
Note: See TracChangeset
for help on using the changeset viewer.