Skip to content
Snippets Groups Projects
Commit 54b79d5b authored by Jan Zickermann's avatar Jan Zickermann
Browse files

Merge branch 'KOP-3126-Cleanup-Logs' into 'main'

Kop 3126 cleanup logs

See merge request !4
parents 59a1cece 48483720
No related branches found
Tags 0.2.1
1 merge request!4Kop 3126 cleanup logs
Pipeline #2272 passed
......@@ -136,7 +136,7 @@ public class XtaClientConfig {
@RequiredArgsConstructor
@Getter
@Builder
@ToString
@ToString(exclude = {"content", "password"})
public static class KeyStore {
/**
* File content of the keystore file.
......
......@@ -55,7 +55,7 @@ public class XtaClientService {
try {
return Optional.of(service.getMessage(messageId, readerClientIdentifier));
} catch (XTAWSTechnicalProblemException | PermissionDeniedException | InvalidMessageIDException | RuntimeException e) {
logError("Failed to get message by id ! '%s' (reader: %s)".formatted(messageId, readerClientIdentifier.value()), e);
logError("Failed to get message by id! '%s' (reader: %s)".formatted(messageId, readerClientIdentifier.value()), e);
return Optional.empty();
}
}
......
......@@ -24,7 +24,7 @@ import lombok.extern.slf4j.Slf4j;
public class XtaTestServerSetupExtension implements BeforeAllCallback, AfterAllCallback {
private static final DockerImageName XTA_TEST_SERVER_IMAGE = DockerImageName.parse("docker.ozg-sh.de/xta-test-server")
.withTag("release-1.7.0");
.withTag("latest");
private static final String XTA_TEST_CLIENT_KEYSTORE_PATH = "store/xta-test-client-john-smith_keystore.p12";
private static final String XTA_TEST_CLIENT_KEYSTORE_PASSWORD = "password";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment