Skip to content

Commit

Permalink
Websocket svc host fix
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Jan 16, 2025
1 parent de22dc7 commit a88c309
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ docker-push:
docker push "brandonjroberts/art-peace-backend:$(APP_VERSION)-$(COMMIT_SHA)"
@echo "Pushing consumer..."
docker push "brandonjroberts/art-peace-consumer:$(APP_VERSION)-$(COMMIT_SHA)"
@echo "Pushing websocket..."
docker push "brandonjroberts/art-peace-websocket:$(APP_VERSION)-$(COMMIT_SHA)"
@echo "Pushing indexer..."
docker push "brandonjroberts/art-peace-indexer:$(APP_VERSION)-$(COMMIT_SHA)"

Expand Down
2 changes: 1 addition & 1 deletion configs/prod-backend.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"host": "backend.art-peace-sepolia.svc.cluster.local",
"port": 8080,
"consumer_port": 8081,
"ws_host": "websockets.art-peace-sepolia.svc.cluster.local",
"ws_host": "websocket.art-peace-sepolia.svc.cluster.local",
"ws_port": 8082,
"scripts": {
"place_pixel_devnet": "/scripts/place_pixel.sh",
Expand Down
2 changes: 1 addition & 1 deletion indexer/prod-script.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const config = {
streamUrl: Deno.env.get("APIBARA_STREAM_URL"),
startingBlock: 600_000,
startingBlock: 720_000,
network: "starknet",
finality: "DATA_STATUS_PENDING",
filter: {
Expand Down

0 comments on commit a88c309

Please sign in to comment.