Skip to content

Commit 813b0b6

Browse files
committed
fix error
1 parent 8e3dfa0 commit 813b0b6

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/example/echoshotx/job/domain/entity/Job.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public class Job extends BaseTimeEntity {
3232

3333
public static Job create(Long memberId, Long videoId, String s3Key, ProcessingType processingType) {
3434
return Job.builder()
35+
.memberId(memberId)
36+
.videoId(videoId)
3537
.s3Key(s3Key)
3638
.processingType(processingType)
3739
.status(JobStatus.REQUESTED)

src/main/java/com/example/echoshotx/job/infrastructure/dto/JobMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class JobMessage {
2222
private final String s3Key;
2323

2424
/**
25-
* 작업 유형 (예: UPSCALE, THUMBNAIL_GENERATION 등)
25+
* 작업 유형 (예: AI_UPSCALING 등)
2626
*/
2727
private final String processingType;
2828

0 commit comments

Comments
 (0)