gazebo-setup, part-1: fix docker logs command and correct expected startup messages#5088
Open
ya8282 wants to merge 5 commits into
Open
gazebo-setup, part-1: fix docker logs command and correct expected startup messages#5088ya8282 wants to merge 5 commits into
ya8282 wants to merge 5 commits into
Conversation
✅ Deploy Preview for viam-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Member
|
👋 Thanks for contributing! A reviewer will look at it on the next working day! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Note
This discrepancy could be a candidate for a Docker smoke-test in CI. Something like:
Two related fixes for the can inspection simulation setup flow.
gazebo-setup.md — Step 5: Verify the Setup
The
docker logscommand shown requires the user to run it repeatedly to catch the startup message. Replaces it withdocker logs -fto stream output in real time, and corrects the expected log messages — the string"Can Inspection Station 1 Running!"does not appear in the actual container output.Also renames View logs to Follow logs in the Container Management section to match Docker's terminology for the
-f/--followflag.Before:
```
docker logs gz-station1
Look for:
```
After:
```
docker logs -f gz-station1
Wait for the following messages, then press Ctrl+C:
can-spawner entered RUNNING stateweb-viewer entered RUNNING stateviam-server entered RUNNING state```
part-1.md — Prerequisites
Updates the same incorrect log message reference in the prerequisites section.
Before:
After:
Verification
Log output confirming the correct messages (truncated):
```
2026-06-03 22:07:41,707 INFO success: can-spawner entered RUNNING state, process has stayed up for > than 15 seconds (startsecs)
2026-06-03 22:07:41,707 INFO success: web-viewer entered RUNNING state, process has stayed up for > than 15 seconds (startsecs)
2026-06-03 22:07:41,708 INFO success: viam-server entered RUNNING state, process has stayed up for > than 15 seconds (startsecs)
```
🤖 Generated with Claude Code