Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ST] Update test-clients to 0.7.0 after the release #9785

Merged
merged 3 commits into from
Mar 7, 2024
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 @@ -195,8 +195,8 @@ public class Environment {
private static final String RESOURCE_ALLOCATION_STRATEGY_DEFAULT = "SHARE_MEMORY_FOR_ALL_COMPONENTS";

private static final String ST_KAFKA_VERSION_DEFAULT = TestKafkaVersion.getDefaultSupportedKafkaVersion();
private static final String ST_CLIENTS_KAFKA_VERSION_DEFAULT = "3.6.0";
public static final String TEST_CLIENTS_VERSION_DEFAULT = "0.6.0";
private static final String ST_CLIENTS_KAFKA_VERSION_DEFAULT = "3.7.0";
public static final String TEST_CLIENTS_VERSION_DEFAULT = "0.7.0";
public static final String ST_FILE_PLUGIN_URL_DEFAULT = "https://repo1.maven.org/maven2/org/apache/kafka/connect-file/" + ST_KAFKA_VERSION_DEFAULT + "/connect-file-" + ST_KAFKA_VERSION_DEFAULT + ".jar";
public static final String OLM_OPERATOR_VERSION_DEFAULT = "0.38.0";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ void testTeamAWriteToTopic() {
.withOauthClientId(TEAM_A_CLIENT)
.withOauthClientSecret(TEAM_A_CLIENT_SECRET)
.withOauthTokenEndpointUri(keycloakInstance.getOauthTokenEndpointUri())
// by default it's set to 1000, which makes the job longer to fail
.withAdditionalConfig("retry.backoff.max.ms=100\n")
.build();

LOGGER.info("Sending {} messages to Broker with Topic name {}", testStorage.getMessageCount(), testStorage.getTopicName());
Expand Down Expand Up @@ -258,6 +260,8 @@ void testTeamBWriteToTopic() {
.withOauthClientId(TEAM_B_CLIENT)
.withOauthClientSecret(TEAM_B_CLIENT_SECRET)
.withOauthTokenEndpointUri(keycloakInstance.getOauthTokenEndpointUri())
// by default it's set to 1000, which makes the job longer to fail
.withAdditionalConfig("retry.backoff.max.ms=100\n")
.build();

LOGGER.info("Sending {} messages to Broker with Topic name {}", testStorage.getMessageCount(), testStorage.getTopicName());
Expand Down
Loading