Skip to content

Commit d2183d3

Browse files
committed
resolve changelog conflict
2 parents 123beca + 65f6aca commit d2183d3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Categories for each release: Added, Changed, Deprecated, Removed, Fixed, Securit
88

99
### Security
1010

11-
* Updated dependencies in Java wrapper: httpclient 4.5.14
11+
* Updated dependencies in Java wrapper
12+
* commons-io 2.18.0
13+
* httpclient 4.5.14
1214

1315
## [389.0] - beta
1416

src/java/Readme.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@ Development
1212

1313
### Build dependencies
1414

15-
* Maven (`apt-get install maven`)
15+
* Maven
16+
17+
```bash
18+
apt-get install maven
19+
````
20+
21+
```bash
22+
brew install maven
23+
```
1624

1725
### Building
1826

src/java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>commons-io</groupId>
6464
<artifactId>commons-io</artifactId>
65-
<version>2.5</version>
65+
<version>2.18.0</version>
6666
<scope>compile</scope>
6767
</dependency>
6868

src/python/dxpy/bindings/dxfile.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747

4848
MD5_READ_CHUNK_SIZE = 1024*1024*4
4949
FILE_REQUEST_TIMEOUT = 60
50+
PART_UPLOAD_REQUEST_TIMEOUT_SECONDS = 300
5051

5152

5253
def _validate_headers(headers):
@@ -715,7 +716,7 @@ def get_upload_url_and_headers():
715716
jsonify_data=False,
716717
prepend_srv=False,
717718
always_retry=True,
718-
timeout=FILE_REQUEST_TIMEOUT,
719+
timeout=PART_UPLOAD_REQUEST_TIMEOUT_SECONDS,
719720
auth=None,
720721
method='PUT')
721722

0 commit comments

Comments
 (0)