-
Notifications
You must be signed in to change notification settings - Fork 29
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
fog list fails if instance is not fully set up yet #28
Comments
The current design is that we only flush the Is there any better way of doing this? (I know I need to add error handling) |
Yeah I think there are multiple options here: 1) just check if the info file is not available yet and return an abbreviated description for this instance, 2) remove any instances from |
The fix for #33 now reuses a single security group for all runs. We can use it to filter EC2 instances with the with
We could also consider using other AWS/EC2 functionality like tags. With this, we can get most of the information related to an instance other than the private key. So we still have to store something locally. Also need to consider how we can do something similar with other providers (e.g., GCP). |
the check existence is resolved by 7807f26. We should close this issue |
I'm working on a more robust version that queries AWS directly. |
Describe the bug
If the instance is still starting up, running
ros2 fog list
results in aFileNotFoundError
.To Reproduce
Steps to reproduce the behavior:
ros2 launch fogros2_examples talker.launch.py
ros2 fog list
Expected behavior
Should output a list of current fogros2 instances.
The text was updated successfully, but these errors were encountered: