Skip to content

Commit

Permalink
Disable concurrency in airnode-examples (#1467)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcroote authored and amarthadan committed Sep 30, 2022
1 parent 3ab78eb commit 522c5e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/small-trains-hide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@api3/airnode-examples': minor
---

Disable concurrency in airnode-examples
4 changes: 2 additions & 2 deletions packages/airnode-examples/integrations/config-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const createCloudProviderConfiguration = (generateExampleFile: boolean):
return {
type: airnodeType,
region: 'us-east-1',
disableConcurrencyReservations: false,
disableConcurrencyReservations: true,
};
case 'local':
return {
Expand All @@ -30,7 +30,7 @@ export const createCloudProviderConfiguration = (generateExampleFile: boolean):
type: airnodeType,
region: 'us-east1',
projectId: integrationInfo.gcpProjectId!,
disableConcurrencyReservations: false,
disableConcurrencyReservations: true,
};
}
}
Expand Down

0 comments on commit 522c5e2

Please sign in to comment.