laconic2d shows as unhealthy but is producing blocks #4
Labels
No Label
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/testnet-laconicd-stack#4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
following stack instructions,
docker ps
showsUp 8 hours (unhealthy)
anddocker logs
shows blocks coming inpossibly related to being unable to talk to the chain remotely, i.e.,
Invalid registry RPC endpoint
Repro steps: https://gist.github.com/zramsay/87f37ce0c557a93c335cb23a37c227c1
Hi @zramsay
The healthcheck in fixturenet stack laconicd container was incorrect and has been fixed
In the repro steps, it can be seen that you are trying to install laconic-registry-cli version
0.2.0
but no such version has been published.To connect with remote laconic2d node,
laconic-registry-cli
branch laconic2 needs to be used.laconic-console stack can also be used to connect with remote laconic2d node.
yea i built
laconic-registry-cli
from thelaconic2
branch (yarn && yarn install) and the version it builds is0.2.0
per this commit:9c992ebe71 (diff-7030d0b2f71b999ff89a343de08c414af32fc93a)
see also https://git.vdb.to/zramsay/birbit/src/branch/main/.github/workflows/publish.yaml#L39. The CI fails with the same
Invalid registry RPC endpoint
now i'm getting this error:
@zramsay The config required for
laconic-registry-cli
v2 (laconic2 branch) is a little different than that of v1. Needs to be created as such wherever required (when creating manually or in the script).Can refer to setup for the same.
The
registry-sdk
dependency had to be upgraded after latest changes to laconic2d, should be handled by PR cerc-io/laconic-registry-cli#70@zramsay Can you check if it works for you now? (make sure to rebuild the images with latest code)
ah, so
restEndpoint
becamerpcEndpoint
. all three issues in this issue have been address