Skip to content

Commit d323263

Browse files
author
Shrey Modi
committed
removed double log
1 parent b9d48b0 commit d323263

File tree

1 file changed

+2
-2
lines changed
  • tests/remote_server/typescript-server

1 file changed

+2
-2
lines changed

tests/remote_server/typescript-server/server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ app.post("/init", async (req: Request, res: Response) => {
5252
if (!model) {
5353
throw new Error("model is required in completion_params");
5454
}
55-
console.log(`Initializing rollout ${rollout_id} with model ${model}`);
56-
console.log(`Initializing rollout ${rollout_id} with model ${completion_params['model']}`);
55+
console.log(`Initializing rollout ${rollout_id} with model ${model}`);
56+
5757

5858
// Create rollout state
5959
const rolloutState: RolloutState = {

0 commit comments

Comments
 (0)