Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore : yml 수정 #61

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class SchedulerServiceImpl implements SchedulerService{
private final PhotoRepository photoRepository;
private final UuidRepository uuidRepository;
private final AmazonS3Manager s3Manager;
@Scheduled(cron = "*/10 * * * * *", zone = "Asia/Seoul")
@Scheduled(cron = "0 0 18 * * *", zone = "Asia/Seoul")
@Transactional
public void deletePhoto() {
log.info("deletePhoto () : call");
Expand Down
10 changes: 1 addition & 9 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spring:

jpa:
hibernate:
ddl-auto: update
ddl-auto: create-drop

web:
cors:
Expand All @@ -20,14 +20,6 @@ spring:
multipart:
max-file-size: 20MB
max-request-size: 20MB

logging:
level:
root: INFO
org.springframework.web: DEBUG
org.springframework.scheduling: DEBUG
org.apache.coyote: DEBUG

cloud:
aws:
s3:
Expand Down
Loading