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
Current Dockerfile defines worker_id env.
If worker_id env is defined, katsubushi ignores -redis option.
Because envToFlag is processed at last of option parsing.
Unless user unsets worker_id by any way, cannot use -redis option.
I think it is not good.
The text was updated successfully, but these errors were encountered:
A workaround is available, for example set worker_id=0 and redis=redis://......
But certainly that is confusing. We have been fixed Dockerfile in v1.5.0. (#32)
Now we can run simply asdocker run katsubushi/katsubushi:v1.5.0 -worker-id 1 or katsubushi/katsubushi:v1.5.0 -redis redis://.....
Current Dockerfile defines
worker_id
env.If
worker_id
env is defined, katsubushi ignores-redis
option.Because
envToFlag
is processed at last of option parsing.Unless user unsets
worker_id
by any way, cannot use-redis
option.I think it is not good.
The text was updated successfully, but these errors were encountered: