Skip to content

Commit

Permalink
Merge pull request #188 from 9uttery/fix/#181
Browse files Browse the repository at this point in the history
[Fix] Prod 환경이 아닌 경우 알림 가지 않도록 수정
  • Loading branch information
mingeun0507 authored May 6, 2024
2 parents ddbb56c + 1b80b92 commit e488f0a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.guttery.madii.common.config.scheduling;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.scheduling.annotation.EnableScheduling;

@Configuration
@EnableScheduling
@Profile("prod")
public class SchedulerConfig {
}

0 comments on commit e488f0a

Please sign in to comment.