Skip to content

Commit

Permalink
Merge pull request #866 from eclipse-tractusx/chore/841-fix-cucumber-…
Browse files Browse the repository at this point in the history
…test

fix(irs-models): fix missing expected tombstone data
  • Loading branch information
ds-jhartmann authored Aug 5, 2024
2 parents 757974a + b378be7 commit 1cd4eda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"tombstones": [
{
"catenaXId": "urn:uuid:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"endpointURL": null,
"businessPartnerNumber": null,
"endpointURL": "http://umbrella-dataprovider-edc-controlplane:8084",
"businessPartnerNumber": "BPNL00000003AYRE",
"processingError": {
"processStep": "DigitalTwinRequest",
"errorDetail": "Unable to find any of the requested shells",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;
import lombok.Getter;
import lombok.ToString;
import lombok.extern.jackson.Jacksonized;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.eclipse.tractusx.irs.component.enums.NodeType;
Expand All @@ -41,6 +42,7 @@
@Builder(toBuilder = true)
@Jacksonized
@Schema(description = "Tombstone with information about request failure")
@ToString
public class Tombstone {

public static final int CATENA_X_ID_LENGTH = 45;
Expand Down

0 comments on commit 1cd4eda

Please sign in to comment.