Skip to content

Commit

Permalink
fix: domain name change
Browse files Browse the repository at this point in the history
  • Loading branch information
lopahn2 committed Oct 23, 2023
1 parent 3107982 commit 5a1d249
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ public ConcurrentKafkaListenerContainerFactory<String, String> kafkaListenerCont

@Bean
public SuiteStudyService suiteStudyService(RestTemplate restTemplate) {
String GET_STUDYAVGINFO_URI = "http://suitestudy.com/study/study-info/";
String GET_STUDYAVGINFO_URI = "http://api.suitestudy.com/study/study-info/";
return new SuiteStudyService(GET_STUDYAVGINFO_URI, restTemplate);
}

@Bean
public AnpService anpService(RestTemplate restTemplate) {
String GET_POINT_URI = "http://suitestudy.com/anp/point/";
String GET_POINT_URI = "http://api.suitestudy.com/anp/point/";
return new AnpService(GET_POINT_URI, restTemplate);
}
}

0 comments on commit 5a1d249

Please sign in to comment.