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

Add hasura.select_limit env variable #47

Merged
merged 2 commits into from
Feb 7, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/dipdup.ghostnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ database:
hasura:
url: http://${HASURA_HOST:-hasura}:8080
admin_secret: ${ADMIN_SECRET:-changeme}
select_limit: 10000
select_limit: ${HASURA_SELECT_LIMIT:-10000}
allow_aggregation: false
rest: true
source:
Expand Down
2 changes: 1 addition & 1 deletion build/dipdup.mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ database:
hasura:
url: http://${HASURA_HOST:-hasura}:8080
admin_secret: ${ADMIN_SECRET:-changeme}
select_limit: 10000
select_limit: ${HASURA_SELECT_LIMIT:-10000}
allow_aggregation: false
rest: true
source:
Expand Down
2 changes: 1 addition & 1 deletion build/dipdup.thumbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ database:
hasura:
url: http://${HASURA_HOST:-hasura}:8080
admin_secret: ${ADMIN_SECRET:-changeme}
select_limit: 100
select_limit: ${HASURA_SELECT_LIMIT:-10000}
allow_aggregation: false
rest: true

Expand Down
2 changes: 1 addition & 1 deletion build/dipdup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ database:
hasura:
url: http://${HASURA_HOST:-hasura}:8080
admin_secret: ${ADMIN_SECRET:-changeme}
select_limit: 10000
select_limit: ${HASURA_SELECT_LIMIT:-10000}
allow_aggregation: false
rest: true
source:
Expand Down
1 change: 1 addition & 0 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-changeme}
- ADMIN_SECRET=${ADMIN_SECRET:-changeme}
- HASURA_SELECT_LIMIT=${HASURA_SELECT_LIMIT:-10000}
- IPFS_NODE_URI=${IPFS_NODE_URI:-https://ipfs.io}
volumes:
- ipfs:/etc/metadata/ipfs
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-changeme}
- ADMIN_SECRET=${ADMIN_SECRET:-changeme}
- HASURA_SELECT_LIMIT=${HASURA_SELECT_LIMIT:-10000}
- IPFS_NODE_URI=${IPFS_NODE_URI:-https://ipfs.io}
volumes:
- ipfs:/etc/metadata/ipfs
Expand Down
Loading