Skip to content
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
2 changes: 1 addition & 1 deletion src/main/java/io/managed/services/test/cli/CLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void deleteServiceAccount(String id) throws CliGenericException {
}

public void createServiceAccount(String name, Path path) throws CliGenericException {
retry(() -> exec("service-account", "create", "--name", name, "--file-format", "json", "--output-file", path.toString(), "--overwrite"));
retry(() -> exec("service-account", "create", "--short-description", name, "--file-format", "json", "--output-file", path.toString(), "--overwrite"));
}

public Topic createTopic(String topicName) throws CliGenericException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
*/
@Log4j2
public class KafkaAdminPermissionTest extends TestBase {

private static final String KAFKA_INSTANCE_NAME = "mk-e2e-pe-" + Environment.LAUNCH_KEY;
private static final String SERVICE_ACCOUNT_NAME = "mk-e2e-pe-sa-" + Environment.LAUNCH_KEY;
private static final String TOPIC_NAME = "test-topic-1";
Expand Down