Skip to content

Commit

Permalink
fixes #135 Reduce token endpoint access timeout to 4 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed Nov 25, 2017
1 parent 4f26806 commit 3e60098
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void failed(IOException e) {
}
});

latch.await(1, TimeUnit.SECONDS);
latch.await(4, TimeUnit.SECONDS);
} catch (Exception e) {
logger.error("IOException: ", e);
throw new ClientException(e);
Expand Down

0 comments on commit 3e60098

Please sign in to comment.