Skip to content

Commit

Permalink
chore: Remove rest settings from java app properties (#3155)
Browse files Browse the repository at this point in the history
The rest setting was not being used since the java server moved to being gRPC only. Specifying it is only likely to cause warnings/errors and confusion.

Signed-off-by: Achal Shah <achals@gmail.com>

Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Aug 30, 2022
1 parent 5d3bdd0 commit e4c8980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
Expand Up @@ -38,7 +38,6 @@ public class ApplicationProperties {
private static final Logger log = org.slf4j.LoggerFactory.getLogger(ApplicationProperties.class);
private FeastProperties feast;
private GrpcServer grpc;
private RestServer rest;

public FeastProperties getFeast() {
return feast;
Expand Down Expand Up @@ -331,18 +330,6 @@ public void setServer(Server server) {
}
}

public static class RestServer {
private Server server;

public Server getServer() {
return server;
}

public void setServer(Server server) {
this.server = server;
}
}

/** Trace metric collection properties */
public static class TracingProperties {

Expand Down
Expand Up @@ -16,6 +16,7 @@
*/
package feast.serving.service.config;

import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectReader;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
Expand All @@ -40,6 +41,7 @@ public ApplicationProperties provideApplicationProperties() throws IOException {
ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
mapper.findAndRegisterModules();
mapper.setDefaultMergeable(Boolean.TRUE);
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

ApplicationProperties properties = new ApplicationProperties();
ObjectReader objectReader = mapper.readerForUpdating(properties);
Expand Down

0 comments on commit e4c8980

Please sign in to comment.