Skip to content
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

fix(subgraph): fix renovate/graphprotocol graph node 0.0.34 #13501

Merged
merged 5 commits into from Mar 21, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/development.env
Expand Up @@ -15,6 +15,7 @@ BASE64_WEDLOCKS_PRIVATE_KEY=pk
POSTGRES_USER=graph-node
POSTGRES_PASSWORD=let-me-in
POSTGRES_DB=graph-node
POSTGRES_INITDB_ARGS="-E UTF8 --locale=C" # required by graph-node since 0.30.0

# for subgraph config
postgres_host=postgres
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.integration.yml
Expand Up @@ -37,7 +37,7 @@ services:
[
'/opt/wait-for-it.sh',
'-t',
'0',
'600',
'graph-node:8020',
'--',
'sh',
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
@@ -1,7 +1,7 @@
version: '3.2'
services:
graph-node:
image: graphprotocol/graph-node:v0.29.0
image: graphprotocol/graph-node:v0.34.1
ports:
- '8000:8000'
- '8001:8001'
Expand Down
3 changes: 2 additions & 1 deletion docker/integration-graph-node.env
Expand Up @@ -4,4 +4,5 @@ postgres_pass=password
postgres_db=locksmith_test
ipfs=ipfs:5001
ethereum=mainnet:http://eth-node:8545
RUST_LOG=info
RUST_LOG=info
POSTGRES_INITDB_ARGS="-E UTF8 --locale=C" # required by graph-node since 0.30.0