Skip to content

Do not disable command chooser when command name is null #2276

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

Merged
merged 1 commit into from
Aug 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs.openc3.com/docs/guides/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,17 @@ We've seen a number of issues deploying COSMOS via Docker in various types of in
- Enable the Setting
- Completely restart Chrome. On MacOS make sure the dot below the icon in chrome is gone by long pressing the icon and choosing Quit.

1. When using your own certs, you see an error banner with "Token is invalid" with "Failed to open TCP connection to <KEYCLOAK URL> (execution expired)".

We have seen this when a local firewall is blocking the 443 port to Keycloak. Keycloak itself can still be reachable at `<KEYCLOAK URL>/auth` which makes it feel like this is not a firewall issue. However, if you exec into the `cmd-tlm-api` container you should be able to curl the following Keycloak URL:

```bash
docker ps
docker exec -it <CONTAINER ID FOR CMD_TLM_API> sh
$ ping <KEYCLOAK URL>
$ curl -vvv <KEYCLOAK URL>/realms/openc3/protocol/openid-connect/certs
```

If this does not return you could be blocking the 443 port to Keycloak. Update your firewall settings and try again.

Encountering an issue not on this list? If you're a customer, please get in touch at [[email protected]](mailto:[email protected]).
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<target-packet-item-chooser
:initial-target-name="$route.params.target"
:initial-packet-name="$route.params.packet"
:disabled="sendDisabled || commandName == null"
:disabled="sendDisabled"
button-text="Send"
mode="cmd"
@on-set="commandChanged($event)"
Expand Down
Loading