Skip to content

Commit 6022f40

Browse files
author
EpicFn
committed
CI 실패해서 다시 EAGER로 변경
1 parent 29136fb commit 6022f40

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/org/tuna/zoopzoop/backend/domain/dashboard/entity

1 file changed

+1
-1
lines changed

src/main/java/org/tuna/zoopzoop/backend/domain/dashboard/entity/Dashboard.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class Dashboard extends BaseEntity {
2121

2222
// 이 대시보드가 담고 있는 그래프 콘텐츠 (1:1 관계)
2323
// Cascade 설정을 통해 Dashboard 저장 시 Graph도 함께 저장되도록 함
24-
@OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL, orphanRemoval = true)
24+
@OneToOne(fetch = FetchType.EAGER, cascade = CascadeType.ALL, orphanRemoval = true)
2525
@JoinColumn(name = "graph_id")
2626
private Graph graph;
2727

0 commit comments

Comments
 (0)