Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ format.version = "1.1"
[versions]
awaitility = "4.3.0"
edc = "0.17.0-SNAPSHOT"
edc-build = "1.3.0"
edc-build = "1.4.0"
jackson = "2.21.2"
jakarta-json = "2.1.3"
parsson = "1.1.6"
Expand Down
186 changes: 93 additions & 93 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions k8s/consumer/base/vault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,11 @@ spec:
value: "root"
- name: VAULT_DEV_LISTEN_ADDRESS
value: "0.0.0.0:8200"
- name: SKIP_SETCAP
value: "true"
args:
- "server"
- "-dev"
securityContext:
capabilities:
add:
- IPC_LOCK

---
apiVersion: v1
Expand Down
5 changes: 2 additions & 3 deletions k8s/issuer/base/vault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ spec:
value: "root"
- name: VAULT_DEV_LISTEN_ADDRESS
value: "0.0.0.0:8200"
args:
- "server"
- "-dev"
- name: SKIP_SETCAP
value: "true"
securityContext:
capabilities:
add:
Expand Down
5 changes: 2 additions & 3 deletions k8s/provider/base/vault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ spec:
value: "root"
- name: VAULT_DEV_LISTEN_ADDRESS
value: "0.0.0.0:8200"
args:
- "server"
- "-dev"
- name: SKIP_SETCAP
value: "true"
securityContext:
capabilities:
add:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void transferData_hasPermission_shouldTransferData() {
.pollDelay(TEST_POLL_DELAY)
.untilAsserted(() -> {
var jp = baseRequest()
.get(CONSUMER_MANAGEMENT_URL + "/api/mgmt/v4beta/edrs/%s/dataaddress".formatted(transferProcessId))
.get(CONSUMER_MANAGEMENT_URL + "/api/mgmt/v3/edrs/%s/dataaddress".formatted(transferProcessId))
.then()
.log().ifValidationFails()
.statusCode(200)
Expand Down
Loading