Skip to content

Commit

Permalink
fix: uuid name으로 바꾼 것으로 초기 containerID로 인한 문제 해결을 위해 default값 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
flydog98 authored and LuizyHub committed Nov 29, 2023
1 parent 8b71dd9 commit 605200c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/session/session.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class SessionService {
session.problems.set(problemId, {
status: 'solving',
logs: [],
containerId: '',
containerId: 'default-id',
});
this.logger.log('info', `session ${session._id as ObjectId} updated`);
this.logger.log(
Expand Down

0 comments on commit 605200c

Please sign in to comment.