Skip to content

Commit

Permalink
fix: Undo changes made for local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Darun Seethammagari authored and Darun Seethammagari committed Aug 14, 2023
1 parent a8350a4 commit 5f032c7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion indexer-js-queue-handler/hasura-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export default class HasuraClient {
password,
database: databaseName,
username: userName,
host: 'postgres',
host: process.env.PG_HOST,
port: Number(process.env.PG_PORT),
}
},
Expand Down
2 changes: 1 addition & 1 deletion indexer-js-queue-handler/scripts/provision-user-dbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const accountIdsSet = schemaNames.reduce((accountIdsSet, schemaName) => {
return accountIdsSet;
}, new Set());

const accountIds = ['morgs.near', 'flatirons.near', 'roshaan.near', 'dataplatform.near'];
const accountIds = Array.from(accountIdsSet);

console.log(`Creating datasources for accounts: ${accountIds.join(', ')}`)

Expand Down
1 change: 0 additions & 1 deletion runner/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion runner/src/dml-handler/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default } from './dml-handler';
export { default } from './dml-handler';

0 comments on commit 5f032c7

Please sign in to comment.