Skip to content

Commit

Permalink
fix: 채점 시작 이벤트 메시지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rladydgn committed Dec 2, 2023
1 parent 1c2fa03 commit a4f6ace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class CompetitionGateWay implements OnGatewayConnection, OnGatewayInit {
);
this.competitionService.scoreSubmission(createSubmissionDto, client.id, user);
console.log(createSubmissionDto);
client.emit('scoreResult', { message: '채점을 시작합니다.', testcaseNum: testcaseNum });
client.emit('scoreStart', { message: '채점을 시작합니다.', testcaseNum: testcaseNum });
}

@SubscribeMessage('ping')
Expand Down

0 comments on commit a4f6ace

Please sign in to comment.