Changeset 151f92c in rattail
- Timestamp:
- 11/27/2022 12:33:44 PM (2 months ago)
- Branches:
- master
- Children:
- c7e61ec
- Parents:
- 2e4bb53
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rattail/luigi/handler.py
r2e4bb53 r151f92c 185 185 env = { 186 186 'PYTHONPATH': appdir, 187 'RATTAIL_CONFIG_FILES': os.path .join(appdir, 'silent.conf'),187 'RATTAIL_CONFIG_FILES': os.pathsep.join(self.config.files_read), 188 188 } 189 189 … … 199 199 cmd = [ 200 200 '{}/bin/rattail'.format(sys.prefix), 201 '--config', '{}/silent.conf'.format(appdir),202 201 '--no-versioning', 203 202 'overnight', '-k', task['key'], … … 235 234 cmd = [ 236 235 os.path.join(sys.prefix, 'bin', 'rattail'), 237 '--config', os.path.join(appdir, 'silent.conf'),238 236 '--no-versioning', 239 237 'run-n-mail', … … 248 246 249 247 # log final command 248 log.debug("env is: %s", env) 250 249 log.debug("launching command in subprocess: %s", cmd) 251 250 if dry_run:
Note: See TracChangeset
for help on using the changeset viewer.