Skip to content

Commit bac7e1c

Browse files
committed
Removed unnecessary connection string
1 parent 74e970d commit bac7e1c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/emulator-testing/emulators/emulator.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,10 @@ export abstract class Emulator {
145145
let promise: ChildProcessPromise<SpawnPromiseResult>;
146146
if (this.isDataConnect) {
147147
const dataConnectConfigDir = this.findDataConnectConfigDir();
148-
const password = process.env['POSTGRES_PASSWORD'];
149148
promise = spawn(this.binaryPath, [
150149
'--v=2',
151150
'dev',
152151
`--listen=127.0.0.1:${this.port},[::1]:${this.port}`,
153-
`--local_connection_string=postgresql://postgres:${password}@localhost:5432/dataconnect-integration?sslmode=disable`,
154152
`--config_dir=${dataConnectConfigDir}`
155153
]);
156154
promise.childProcess.stdout?.on('data', console.log);

0 commit comments

Comments
 (0)