From 8936a40ae7423a3b5e663c607968134280c1b526 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 1 Feb 2024 15:39:57 +0100 Subject: [PATCH] fix(mongodb-runner): add back arg passing to start command This was accidentally removed in 53faa4d27117e1ab3fb6fd015c64df5. --- packages/mongodb-runner/src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mongodb-runner/src/cli.ts b/packages/mongodb-runner/src/cli.ts index 1998e21e..5055f65a 100644 --- a/packages/mongodb-runner/src/cli.ts +++ b/packages/mongodb-runner/src/cli.ts @@ -83,7 +83,7 @@ import * as utilities from './index'; } async function start() { - const { cluster, id } = await utilities.start(argv); + const { cluster, id } = await utilities.start(argv, args); console.log(`Server started and running at ${cluster.connectionString}`); console.log('Run the following command to stop the instance:'); console.log(