Skip to content

Commit

Permalink
HCMPRE-203: updated resttemplate qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
kanishq-egov committed Aug 28, 2024
1 parent 69387ea commit 8777255
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ServiceRequestClient {


@Autowired
public ServiceRequestClient(@Qualifier("objectMapper") ObjectMapper objectMapper, RestTemplate restTemplate) {
public ServiceRequestClient(@Qualifier("objectMapper") ObjectMapper objectMapper, @Qualifier("customRestTemplate") RestTemplate restTemplate) {
this.objectMapper = objectMapper;
this.restTemplate = restTemplate;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,25 @@ egov.boundary.hierarchy.name=HCM-Moz-Hierarchy
transformer.consumer.bulk.create.project.location.capture.topic=save-location-capture-project-topic
transformer.consumer.bulk.project.location.capture.index.v1.topic=transformer-producer-bulk-project-location-capture-index-v1-topic

egov.infra.indexer.host=
egov.indexer.es.username=
egov.indexer.es.password=
egov.search.index.path=
egov.update.index.path=
egov.doc.index.path=
egov.aggregated-household.index=
egov.household.index=
egov.household-member.index=
egov.individual.index=
egov.project.user.action.location.capture.index=
egov.search.index.parameters=
aggregator.consumer.create.household.topic=
aggregator.consumer.update.household.topic=
aggregator.consumer.save.household.member.topic=
aggregator.consumer.update.household.member.topic=
aggregator.consumer.create.individual.topic=
aggregator.consumer.update.individual.topic=
# REDIS CONFIG
spring.redis.host=localhost
spring.redis.port=6379
spring.cache.type=redis

0 comments on commit 8777255

Please sign in to comment.