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
When specifying the entrypoint file path without a ./, it doesn't work:
➜ bundle exec que config/jobs_environment.rb
Could not load file 'config/jobs_environment.rb'
vs:
➜ bundle exec que ./config/jobs_environment.rb
Que waiting for jobs...
This is confusing, and it took us digging through the source code to figure out that ./ was required, since it's passing the unmodified path through to ruby's native require method:
When specifying the entrypoint file path without a
./
, it doesn't work:vs:
This is confusing, and it took us digging through the source code to figure out that
./
was required, since it's passing the unmodified path through to ruby's nativerequire
method:que/bin/command_line_interface.rb
Line 185 in 065981f
We have filed a related issue for revealing the true error when loading this file: #280
The text was updated successfully, but these errors were encountered: