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
currently this code inside a warm module will fail:
flag.Parse()
because there are zero command line arguments.
A minimal fix would be to pass the name of the warm module as arg[0] which would allow flag.Parse() to trivially
work. It would be better if command line flags could be passed to the warm module, although this probably means
changes to runner and the docker-compose to allow the passing of args.
The text was updated successfully, but these errors were encountered:
currently this code inside a warm module will fail:
because there are zero command line arguments.
A minimal fix would be to pass the name of the warm module as arg[0] which would allow flag.Parse() to trivially
work. It would be better if command line flags could be passed to the warm module, although this probably means
changes to runner and the docker-compose to allow the passing of args.
The text was updated successfully, but these errors were encountered: