Skip to content

Commit

Permalink
Fix no proxy (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Liao authored and breedloj committed Sep 7, 2018
1 parent c70b0dd commit f999b34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class SkillServlet extends HttpServlet {

public SkillServlet(Skill skill) {
List<SkillServletVerifier> defaultVerifiers = new ArrayList<>();
defaultVerifiers.add(new SkillRequestSignatureVerifier(Proxy.NO_PROXY));
defaultVerifiers.add(new SkillRequestSignatureVerifier());
Long timestampToleranceProperty = ServletUtils.getSystemPropertyAsLong(TIMESTAMP_TOLERANCE_SYSTEM_PROPERTY);
defaultVerifiers.add(new SkillRequestTimestampVerifier(timestampToleranceProperty != null
? timestampToleranceProperty : DEFAULT_TOLERANCE_MILLIS));
Expand Down

0 comments on commit f999b34

Please sign in to comment.