Skip to content

Commit

Permalink
lower timeout for ocversion check
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Knop committed Feb 6, 2025
1 parent 91960f4 commit 76101c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected RemoteOperationResult run(OwnCloudClient client) {

try {
getMethod = new GetMethod(statUrl);
int status = client.executeMethod(getMethod);
int status = client.executeMethod(getMethod, 1000, 1000);
if (status != HttpStatus.SC_OK) {
result = new RemoteOperationResult(false, getMethod);
client.exhaustResponse(getMethod.getResponseBodyAsStream());
Expand Down

0 comments on commit 76101c3

Please sign in to comment.