Skip to content

Commit

Permalink
fix: update client to fix build (#8369)
Browse files Browse the repository at this point in the history
* fix: update client to fix build

(cherry picked from commit 6c1f32e)
  • Loading branch information
wcarlson5 committed Nov 16, 2021
1 parent 92926e5 commit 9ad563d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ public int register(final String s, final ParsedSchema parsedSchema) {
throw configException;
}

@Override
public int register(final String s, final ParsedSchema parsedSchema, final boolean normalize) {
throw configException;
}

@Override
public int register(final String s, final ParsedSchema parsedSchema, final int i, final int i1) {
throw configException;
Expand Down Expand Up @@ -93,6 +98,11 @@ public int getVersion(final String s, final ParsedSchema parsedSchema) {
throw configException;
}

@Override
public int getVersion(final String s, final ParsedSchema parsedSchema, final boolean normalize) {
throw configException;
}

@Override
public List<Integer> getAllVersions(final String s) {
throw configException;
Expand Down Expand Up @@ -143,6 +153,11 @@ public int getId(final String s, final ParsedSchema parsedSchema) {
throw configException;
}

@Override
public int getId(final String s, final ParsedSchema parsedSchema, final boolean normalize) {
throw configException;
}

@Override
public List<Integer> deleteSubject(final String s) {
return ImmutableList.of();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static Collection<TestCase<SchemaRegistryClient>> getMethodsToTest() {
// when adding, ensure you also add a suitable test to SupportedMethods below.
.ignore("register", String.class, Schema.class)
.ignore("register", String.class, ParsedSchema.class)
.ignore("register", String.class, ParsedSchema.class, boolean.class)
.ignore("register", String.class, Schema.class, int.class, int.class)
.ignore("register", String.class, ParsedSchema.class, int.class, int.class)
.ignore("getLatestSchemaMetadata", String.class)
Expand Down

0 comments on commit 9ad563d

Please sign in to comment.