Skip to content

Commit 458c73f

Browse files
committed
debezium/dbz#1083: Update error message in PulsarConnectionValidatorTest to reflect authority component validation in service URI.
Signed-off-by: Philippe Camus <pxcamus@pm.me>
1 parent 0db866b commit 458c73f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debezium-platform-conductor/src/test/java/io/debezium/platform/environment/connection/PulsarConnectionValidatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ void shouldFailValidationWithoutURLSchemeForServiceHttpUrl() {
7171

7272
ConnectionValidationResult result = validator.validate(connection);
7373
assertFalse(result.valid(), "Connection validation should fail with invalid ServiceHttpUrl");
74-
assertEquals("Configuration error", result.message());
74+
assertEquals("authority component is missing in service uri : invalid-host:8080", result.message());
7575
}
7676
}

0 commit comments

Comments
 (0)