Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Etschel <philipp.etschel@ch.bosch.com>
  • Loading branch information
etschelp committed Jun 3, 2022
1 parent f6b29f0 commit 09e50a3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ private void handleCredentialProposalInternal(@NonNull BaseCredExRecord ex, Exch
*/
public void handleV1CredentialRequest(@NonNull V1CredentialExchange ex) {
try {
if (Boolean.FALSE.equals(acaPyConfig.getAutoRespondCredentialRequest())) {
// only needed when answering to a holder proposal, as the issuer uses the automated
// flow via /issue-credential/send
if (Boolean.FALSE.equals(acaPyConfig.getAutoRespondCredentialRequest()) && ex.initiatorIsExternal()) {
ac.issueCredentialRecordsIssue(ex.getCredentialExchangeId(),
V1CredentialIssueRequest.builder().build());
}
Expand Down
8 changes: 4 additions & 4 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@
<log4j2.version>2.17.2</log4j2.version>
<lombok.version>1.18.24</lombok.version>
<lombok.maven.plugin.version>1.18.20.0</lombok.maven.plugin.version>
<micronaut.version>3.3.4</micronaut.version>
<micronaut.data.version>3.3.0</micronaut.data.version>
<micronaut.openapi.version>4.0.1</micronaut.openapi.version>
<micronaut.security.version>3.6.0</micronaut.security.version>
<micronaut.version>3.5.0</micronaut.version>
<micronaut.data.version>3.4.1</micronaut.data.version>
<micronaut.openapi.version>4.3.0</micronaut.openapi.version>
<micronaut.security.version>3.6.1</micronaut.security.version>
<mockito.version>4.5.1</mockito.version>
<okhttp.version>4.9.3</okhttp.version>
<org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ services:
bpa-agent2:
profiles:
- second_bpa
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.3
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4-rc2
ports:
- ${ACAPY2_ADMIN_PORT}:${ACAPY2_ADMIN_PORT}
- ${ACAPY2_HTTP_PORT}:${ACAPY2_HTTP_PORT}
Expand Down
4 changes: 2 additions & 2 deletions scripts/scenarios/keycloak-vcauthn/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
- host.docker.internal:host-gateway

bpa-agent1:
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.3
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4-rc2
ports:
- ${ACAPY_ADMIN_PORT}:${ACAPY_ADMIN_PORT}
- ${ACAPY_HTTP_PORT}:${ACAPY_HTTP_PORT}
Expand Down Expand Up @@ -129,7 +129,7 @@ services:
bpa-agent2:
profiles:
- second_bpa
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.3
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4-rc2
ports:
- ${ACAPY2_ADMIN_PORT}:${ACAPY2_ADMIN_PORT}
- ${ACAPY2_HTTP_PORT}:${ACAPY2_HTTP_PORT}
Expand Down
4 changes: 2 additions & 2 deletions scripts/scenarios/local-network/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
extra_hosts:
- host.docker.internal:host-gateway
bpa-agent1:
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.3
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4-rc2
ports:
- ${ACAPY1_ADMIN_PORT}:${ACAPY1_ADMIN_PORT}
- ${ACAPY1_HTTP_PORT}:${ACAPY1_HTTP_PORT}
Expand Down Expand Up @@ -126,7 +126,7 @@ services:
extra_hosts:
- host.docker.internal:host-gateway
bpa-agent2:
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.3
image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.4-rc2
ports:
- ${ACAPY2_ADMIN_PORT}:${ACAPY2_ADMIN_PORT}
- ${ACAPY2_HTTP_PORT}:${ACAPY2_HTTP_PORT}
Expand Down

0 comments on commit 09e50a3

Please sign in to comment.