Skip to content

Commit

Permalink
fix(registry-client): Fix config prefix for default registry client c…
Browse files Browse the repository at this point in the history
…onfiguration
  • Loading branch information
ds-jhartmann committed Aug 30, 2023
1 parent 7f5ae53 commit 3db7842
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ public EndpointDataForConnectorsService endpointDataForConnectorsService(final E
@ConditionalOnProperty(prefix = CONFIG_PREFIX, name = CONFIG_FIELD_TYPE, havingValue = CONFIG_VALUE_DECENTRAL)
public DecentralDigitalTwinRegistryClient decentralDigitalTwinRegistryClient(
@Qualifier(EDC_REST_TEMPLATE) final RestTemplate edcRestTemplate,
@Value("${digitalTwinRegistry.shellDescriptorTemplate:}") final String shellDescriptorTemplate,
@Value("${digitalTwinRegistry.lookupShellsTemplate:}") final String lookupShellsTemplate) {
@Value("${digitalTwinRegistryClient.shellDescriptorTemplate:}") final String shellDescriptorTemplate,
@Value("${digitalTwinRegistryClient.lookupShellsTemplate:}") final String lookupShellsTemplate) {
return new DecentralDigitalTwinRegistryClient(edcRestTemplate, shellDescriptorTemplate, lookupShellsTemplate);
}

Expand Down

0 comments on commit 3db7842

Please sign in to comment.