You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When nodes are restarted with up their libp2p peer id changes.
The reason is that the compose stack contains a service to generate the keyper config file.
This is re-run on every up to ensure config changes are consistently applied.
Unfortunately this doesn't take into account that the peer id is generated as part of the config file generation.
The probably easiest solution is to make the configuration script (scripts/configure_keyper.sh) check for an existing config and re-use the peer id / node key from that.
The text was updated successfully, but these errors were encountered:
Certain values that are stored in the Keyper config file are generated
during first run and are not available in the environment.
Previously these were lost on restart with `docker compose up`.
This now preserves it.
Fixes#7
When nodes are restarted with
up
their libp2p peer id changes.The reason is that the compose stack contains a service to generate the keyper config file.
This is re-run on every
up
to ensure config changes are consistently applied.Unfortunately this doesn't take into account that the peer id is generated as part of the config file generation.
The probably easiest solution is to make the configuration script (
scripts/configure_keyper.sh
) check for an existing config and re-use the peer id / node key from that.The text was updated successfully, but these errors were encountered: