You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some configuration parameters exist both in command line options and system config.
For example, --suppress-repeated-stacktrace, --suppress-config-dump (and now i'm adding --workers).
Engine and other codes (in worker process) refers system_config object to handle these configuration values.
But Supervisor doesn't merge its configuration values (in instance variables) into system config object. So Engine.system_config has values just from <system> section in configuration files.
This causes that some command line options doesn't work as expected.
Some configuration parameters exist both in command line options and system config.
For example,
--suppress-repeated-stacktrace
,--suppress-config-dump
(and now i'm adding--workers
).Engine
and other codes (in worker process) referssystem_config
object to handle these configuration values.But
Supervisor
doesn't merge its configuration values (in instance variables) into system config object. SoEngine.system_config
has values just from<system>
section in configuration files.This causes that some command line options doesn't work as expected.
The text was updated successfully, but these errors were encountered: