Skip to content

Commit

Permalink
fix: increase timeout to avoid false negatives (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkaar authored Oct 1, 2022
1 parent 8cbeb27 commit 4b8f0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/resy/ResyClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class ResyClient(resyApi: ResyApi) extends Logging {
val resyTokenResp = Try {
val response = Await.result(
awaitable = resyApi.postReservation(paymentMethodId, bookToken),
atMost = 5 seconds
atMost = 10 seconds
)

logger.debug(s"URL Response: $response")
Expand Down

0 comments on commit 4b8f0f3

Please sign in to comment.