Skip to content

Commit

Permalink
supervisor: avoid method calling on nil with --daemon flag under Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Shizuo Fujita <[email protected]>
  • Loading branch information
Watson1978 committed Nov 26, 2024
1 parent 89f0a76 commit 12f04ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fluent/supervisor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def self.serverengine_config(params = {})
stop_immediately_at_unrecoverable_exit: true,
root_dir: params['root_dir'],
logger: $log,
log: $log.out,
log: $log&.out,
log_level: params['log_level'],
chuser: params['chuser'],
chgroup: params['chgroup'],
Expand Down

0 comments on commit 12f04ff

Please sign in to comment.