Skip to content

Commit 5cd6590

Browse files
committed
🔥 Remove deprecated --disable_file_logging CLI flag
1 parent c28ff76 commit 5cd6590

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
- Added data-config-specific hash string to C-PAC-generated config files
3636
- Updated `rbc-options` preconfig to use `fmriprep-options` preprocessing
3737
- Changed minimized pipeline base from `default` to `blank`
38+
- Removed deprecated `--disable_file_logging` CLI flag
3839

3940
### Fixed
4041
- Fixed [a bug](https://github.com/FCP-INDI/C-PAC/issues/1779) in which generated pipeline configs were not 100% accurate. The only affected configurable option discovered in testing was seed-based correlation analysis always reverting to the default configuration.

dev/docker_data/run.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,6 @@ def run_main():
247247
parser.add_argument('--save_working_dir', nargs='?',
248248
help='Save the contents of the working directory.',
249249
default=False)
250-
parser.add_argument('--disable_file_logging', action='store_true',
251-
help='Disable file logging, this is useful for '
252-
'clusters that have disabled file locking.',
253-
default=False)
254250

255251
parser.add_argument('--participant_label',
256252
help='The label of the participant that should be '
@@ -595,8 +591,6 @@ def run_main():
595591
c['pipeline_setup']['system_config']['observed_usage'][
596592
'buffer'] = args.runtime_buffer
597593

598-
c['disable_log'] = args.disable_file_logging
599-
600594
if args.save_working_dir is not False:
601595
c['pipeline_setup']['working_directory'][
602596
'remove_working_dir'] = False

0 commit comments

Comments
 (0)