Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Jun 10, 2024
1 parent 4b26550 commit 44ca315
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
public interface Runtimes {

static ParticipantRuntime dimRuntime(String name, Map<String, String> configuration) {
return new ParticipantRuntime(name, configuration,
":edc-tests:runtime:iatp:runtime-memory-iatp-dim"
);
return new ParticipantRuntime(name, configuration, ":edc-tests:runtime:iatp:runtime-memory-iatp-dim");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
public abstract class TractusxParticipantBase extends IdentityParticipant {

public static final String MANAGEMENT_API_KEY = "testkey";
public static final Duration ASYNC_TIMEOUT = ofSeconds(60);
public static final Duration ASYNC_TIMEOUT = ofSeconds(120);
public static final Duration ASYNC_POLL_INTERVAL = ofSeconds(1);
private static final String CONSUMER_PROXY_API_KEY = "consumerProxyKey";
protected final URI dataPlaneProxy = URI.create("http://localhost:" + getFreePort());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@ protected RuntimeExtension consumerRuntime() {

@Override
protected RuntimeExtension providerRuntime() {
return CONSUMER_RUNTIME;
return PROVIDER_RUNTIME;
}
}

0 comments on commit 44ca315

Please sign in to comment.