-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
command :info, objects not found! #100
Comments
Something strange, if |
Let me get back to you on this... |
I think the issue here is related to |
If you mean races. Between load and info no races, load is atomic command which block all other commands. |
Let me see if I can shed more light on this. We manage eye apps using the chef eye cookbook. It creates an init script for us that you can see here. case "$1" in
start)
echo -n "Loading eye configuration for $SERVICE_NAME"
execute load $CONFIG_FILE
execute start $SERVICE_NAME
;;
stop)
execute stop $SERVICE_NAME
;;
restart)
execute restart $SERVICE_NAME
;;
status)
execute info $SERVICE_NAME
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac Since our workers are started via this script, theoretically the config should be loaded. But sometimes it seems that the config has not been loaded, so we get the error in the title of this issue. If I add |
So, the problem is that config not loaded? What |
Is it possible that the config might not be loaded in certain circumstances? We run eye:
Sometimes these commands fail because eye does not seem to be aware of our eye config. (We only have a single eye config file on these servers.) Running |
Not sure that config might not be loaded, never meet this (we using cap and shell). |
any progress here? |
First, I want to thank you for your prompt help on #99. We've upgraded to 0.7.pre and as far as I can tell it's no longer timing out.
Unfortunately, we occasionally get the output
command :info, objects not found!
from the info command.Usually this is in the context of an init script, so the command is
eye info resque_workers
. It would be really nice to track down why this is happening, so we can start to trust reliability of eye info.The text was updated successfully, but these errors were encountered: