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
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Result<DataFlowStatusResponseMessage> status(String dataFlowId) {
public Result<DataFlowStatusMessage> prepare(String controlplaneId, DataFlowPrepareMessage message) {
return getControlPlane(controlplaneId)
.map(controlPlane -> DataFlow.newInstance()
.id(message.processId())
.id(message.dataFlowId())
.state(DataFlow.State.INITIATING)
.labels(message.labels())
.metadata(message.metadata())
Expand Down Expand Up @@ -146,7 +146,7 @@ public Result<DataFlowStatusMessage> prepare(String controlplaneId, DataFlowPrep
public Result<DataFlowStatusMessage> start(String controlplaneId, DataFlowStartMessage message) {
return getControlPlane(controlplaneId)
.map(controlPlane -> DataFlow.newInstance()
.id(message.processId())
.id(message.dataFlowId())
.state(DataFlow.State.INITIATING)
.dataAddress(message.dataAddress())
.callbackAddress(controlPlane.getEndpoint())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public record DataFlowPrepareMessage(
String participantId,
String counterPartyId,
String dataspaceContext,
String processId,
String dataFlowId,
String agreementId,
String datasetId,
String profile,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public record DataFlowStartMessage(
String participantId,
String counterPartyId,
String dataspaceContext,
String processId,
String dataFlowId,
String agreementId,
String datasetId,
String profile,
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ nimbusJoseJwt = "10.9.1"
postgresql = "42.7.12"
restAssured = "6.0.0"
slf4j = "2.0.18"
tck-dps = "1.2.0"
tck-dps = "1.3.0"
testcontainers = "2.0.5"
wiremock = "3.13.2"

Expand Down