Skip to content

Commit

Permalink
fix: Update jackson and remove unnecessary logging (feast-dev#3809)
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals authored Oct 20, 2023
1 parent 96ece0f commit 018d0ea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<swagger.core.version>1.5.24</swagger.core.version>
<okhttp.version>3.14.7</okhttp.version>
<commons.lang3.version>3.10</commons.lang3.version>
<jackson.version>2.12.6</jackson.version>
<jackson.version>2.14.0</jackson.version>
<javax.xml.bind.version>2.3.1</javax.xml.bind.version>
<javax.annotation.version>1.3.2</javax.annotation.version>
<javax.validation.version>2.0.1.Final</javax.validation.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public ServingServiceV2 registryBasedServingServiceV2(
break;
case REDIS:
RedisClientAdapter redisClient = RedisClient.create(store.getRedisConfig());
log.info("Created EntityKeySerializerV2");
retriever =
new RedisOnlineRetriever(
applicationProperties.getFeast().getProject(),
Expand All @@ -69,8 +68,6 @@ public ServingServiceV2 registryBasedServingServiceV2(
store.getType()));
}

log.info("Working Directory = " + System.getProperty("user.dir"));

final OnlineTransformationService onlineTransformationService =
new OnlineTransformationService(
applicationProperties.getFeast().getTransformationServiceEndpoint(),
Expand Down

0 comments on commit 018d0ea

Please sign in to comment.