Skip to content

Commit

Permalink
fix(subgraph): fix renovate/graphprotocol graph node 0.0.34 (#13501)
Browse files Browse the repository at this point in the history
* chore(deps): update graphprotocol/graph-node docker tag to v0.34.1

* chore(deps): update graphprotocol/graph-node docker tag to v0.34.1

* add postgres flags

* add a 10 min timeout for subgraph

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
clemsos and renovate[bot] committed Mar 21, 2024
1 parent d9f70ad commit e835a27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
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

0 comments on commit e835a27

Please sign in to comment.