Skip to content

Commit 3182d3c

Browse files
author
danf
committed
0.8.3 Release
1 parent 90ea6c8 commit 3182d3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

impl/src/main/java/com/jfrog/bintray/client/impl/BintrayClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class BintrayClient {
1616

1717
public static final int DEFAULT_TIMEOUT = 150000;
1818
public static final String BINTRAY_API_URL = "https://api.bintray.com";
19-
public static final String USER_AGENT = "BintrayJavaClient/0.5"; // TODO: make dynamic
19+
public static final String USER_AGENT = "BintrayJavaClient/0.8.3"; // TODO: make dynamic
2020
private static final int DEFAULT_THREAD_POOL_SIZE = 5; //Don't mess with this - its here for a reason
2121
private static final int DEFAULT_SIGN_REQUEST_TIMEOUT_PER_FILE = 90000; //1.5 min per file
2222

impl/src/test/groovy/com/jfrog/bintray/client/test/spec/BintrayClientSpec.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ class BintrayClientSpec extends Specification {
130130
def anonymousDownloadServerClient = new BintrayImpl(conf.hostFromUrl("https://dl.bintray.com").noRetry().getClient(), "https://dl.bintray.com", 5, 90000)
131131

132132
when:
133-
sleep(2000)
133+
sleep(5000)
134134
ver.publish()
135-
sleep(6000)
135+
sleep(20000)
136136
def response = anonymousDownloadServerClient.get("/" + connectionProperties.username + "/" + REPO_NAME + "/" + files.keySet().asList().get(0), null)
137137

138138
then:

0 commit comments

Comments
 (0)