Skip to content

Commit

Permalink
♻️ : security 삭제 (#batch)
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed Nov 2, 2023
1 parent df2e3db commit 5a6bd54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
@ComponentScan(basePackages = {"com.example.matchbatch","com.example.matchdomain","com.example.matchinfrastructure", "com.example.matchcommon"})
@EnableScheduling
@EnableBatchProcessing
@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
@Slf4j
@SpringBootApplication@Slf4j
public class MatchBatchApplication{
public static void main(String[] args) {
SpringApplication.run(MatchBatchApplication.class, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public class PaymentScheduler {
@Scheduled(fixedDelay = 10000)
public void RegularPayScheduler(){
log.info("정기 결제 스케줄러가 시작");
discordFeignClient.alertMessage(discordConvertor.convertToAlertBatchMessage("정기 결제 스케줄러 시작",20));

Map<String, JobParameter> confMap = new HashMap<>();
confMap.put("time", new JobParameter(System.currentTimeMillis()));
Expand Down

0 comments on commit 5a6bd54

Please sign in to comment.