Skip to content

Commit 7d6bc84

Browse files
Bump jackson-databind
1 parent 340ea63 commit 7d6bc84

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@
4848
<dependency>
4949
<groupId>com.fasterxml.jackson.core</groupId>
5050
<artifactId>jackson-annotations</artifactId>
51-
<version>2.9.0</version>
51+
<version>2.10.0</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>com.fasterxml.jackson.core</groupId>
5555
<artifactId>jackson-core</artifactId>
56-
<version>2.9.7</version>
56+
<version>2.10.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>com.fasterxml.jackson.core</groupId>
6060
<artifactId>jackson-databind</artifactId>
61-
<version>2.9.7</version>
61+
<version>2.10.0.pr1</version>
6262
</dependency>
6363

6464
<dependency>

src/main/java/com/ebay/commerce/taxonomy/utils/DataLoader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public CompletableFuture<Map<String, List<Aspect>>> downloadLatest(Environment e
7575
responseMap = loadDataFromInStream(inputStream);
7676
logger.info(String.format("Categories loaded for category_tree_id %s is %s", categoryTreeId, responseMap.keySet().size()));
7777
} catch (IOException ex) {
78+
ex.printStackTrace();
7879
throw new DownloadException(String.format("Exception while downloading category treeId %s on %s", categoryTreeId,environment.name()));
7980
}
8081
return CompletableFuture.completedFuture(responseMap);
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sun.net.client.defaultConnectTimeout=60000;
2+
sun.net.client.defaultReadTimeout=60000

0 commit comments

Comments
 (0)