Skip to content

Commit

Permalink
fixed uuid issues
Browse files Browse the repository at this point in the history
  • Loading branch information
holashchand committed May 28, 2024
1 parent 117850d commit 8d9302e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ services:
- SPRING_DATASOURCE_USERNAME=postgres
- SPRING_DATASOURCE_PASSWORD=postgres
- REGISTRY_URL=http://registry:8081
- UUID_PROPERTY_NAME=osid
ports:
- '8082:8082'
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MosipCallbackController {
@Autowired
private ObjectMapper objectMapper;

@Value("${database.uuidPropertyName}")
@Value("${database.uuid-property-name}")
private String uuidPropertyName;

@RequestMapping(value = "/plugin/mosip/callback", method = RequestMethod.POST)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class SignatureV2ServiceImpl implements SignatureService, ICertificateSer
@Value("${signature.v2.issuer-did-method}")
private String credentialIssuerMethod;

@Value("${database.uuidPropertyName}")
@Value("${database.uuid-property-name}")
public String uuidPropertyName;

@Autowired
Expand Down

0 comments on commit 8d9302e

Please sign in to comment.