Skip to content

Commit

Permalink
Merge pull request #28 from bcgov/bug/apply-timeout
Browse files Browse the repository at this point in the history
Fix timeout
  • Loading branch information
TayGov authored Jul 9, 2021
2 parents a81dfa8 + a940f2f commit fa729d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public ClamAVClient clamAVClient() {
logger.debug("ClamAv port: [{}]", clamAvProperties.getPort());
logger.debug("ClamAv timeout: [{}]", clamAvProperties.getTimeout());

return new ClamAVClient(clamAvProperties.getHost(), clamAvProperties.getPort());
return new ClamAVClient(clamAvProperties.getHost(), clamAvProperties.getPort(), clamAvProperties.getTimeout());

}

Expand Down

0 comments on commit fa729d4

Please sign in to comment.