Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rayokota committed Sep 6, 2023
1 parent d81b032 commit 4419c26
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ public DekRegistryConfig(String propsFile) throws RestConfigException {
}

public DekRegistryConfig(Properties props) throws RestConfigException {
super(serverConfig, props);
this(serverConfig, props);
}

public DekRegistryConfig(ConfigDef configDef, Properties props) throws RestConfigException {
super(configDef, props);
}

public String topic() {
Expand Down

0 comments on commit 4419c26

Please sign in to comment.