Skip to content

Commit

Permalink
Update metadata store port to 5122 (#2)
Browse files Browse the repository at this point in the history
With the latest Restate changes, we no longer have a separate endpoint
for the metadata store. Instead, it uses the node server which runs on
port 5122.
  • Loading branch information
tillrohrmann authored Dec 19, 2024
1 parent a6404d7 commit c96b7f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interpreter/dist_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SDK_IMAGE =
export const RESTATE_LEADER: ContainerSpec = {
image: RESTATE_IMAGE,
name: "n1",
ports: [8080, 9070, 5122, 5123],
ports: [8080, 9070, 5122],
pull: "always",
env: {
RESTATE_LOG_FILTER: "restate=warn",
Expand All @@ -46,7 +46,7 @@ export const RESTATE_FOLLOWER = (n: number): ContainerSpec => {
RESTATE_CLUSTER_NAME: "foobar",
RESTATE_BIFROST__DEFAULT_PROVIDER: "replicated",
RESTATE_ALLOW_BOOTSTRAP: "true",
RESTATE_METADATA_STORE_CLIENT__ADDRESS: "http://n1:5123",
RESTATE_METADATA_STORE_CLIENT__ADDRESS: "http://n1:5122",
RESTATE_ADVERTISED_ADDRESS: `http://${name}:5122`,
},
};
Expand Down

0 comments on commit c96b7f1

Please sign in to comment.