Skip to content

Commit

Permalink
fix(schema): invalid signature on schema controller
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jun 26, 2023
1 parent cd2c8d8 commit 25167c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/akhq/controllers/SchemaController.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public SchemaController(SchemaRegistryRepository schemaRepository) {
@Operation(tags = {"schema registry"}, summary = "List all schemas")
public List<String> listAll(
String cluster) throws RestClientException, IOException {
return this.schemaRepository.all(cluster, Optional.empty());
return this.schemaRepository.all(cluster, Optional.empty(), List.of());
}


Expand Down

0 comments on commit 25167c7

Please sign in to comment.