We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent defdcca commit c256bf9Copy full SHA for c256bf9
1 file changed
src/main/java/learningFlow/learningFlow_BE/service/embed/BlogEmbedService.java
@@ -72,7 +72,8 @@ public CompletableFuture<byte[]> getBlogSource(Long episodeId) {
72
catch (IOException e) {
73
throw new RuntimeException("Gzip 압축 중 오류 발생", e); // IOException 처리
74
} finally {
75
- driver.quit();
+ if (driver != null)
76
+ driver.quit();
77
}
78
79
0 commit comments