diff --git a/BackEnd/src/live-workouts/matches/matches.service.ts b/BackEnd/src/live-workouts/matches/matches.service.ts
index 5bc7bbe6..b5559b25 100644
--- a/BackEnd/src/live-workouts/matches/matches.service.ts
+++ b/BackEnd/src/live-workouts/matches/matches.service.ts
@@ -102,10 +102,14 @@ export class MatchesService {
     );
 
     const liveWorkoutStartTime = new Date();
-    liveWorkoutStartTime.setMinutes(
-      liveWorkoutStartTime.getSeconds() + MATCHING_DELAY,
+    liveWorkoutStartTime.setSeconds(
+        liveWorkoutStartTime.getSeconds() + 15,
     );
-    const liveWorkoutStartTimeUTC = liveWorkoutStartTime.toISOString();
+    const kstTime = new Date(liveWorkoutStartTime.getTime() + (9 * 60 * 60 * 1000));
+    const liveWorkoutStartTimeUTC = kstTime.toISOString()
+        .replace(/T/, ' ')
+        .replace(/\..+/, '')
+        .slice(0, 19);
 
     const multi = this.redis.multi();
     for (const { publicId } of profiles) {