Skip to content
Snippets Groups Projects
Commit ba3254a0 authored by Markus Thömmes's avatar Markus Thömmes Committed by Paul Castro
Browse files

Bumping actionContainer test timeouts to 60 seconds (#1827)

parent e65815ef
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ object ActionContainer {
val f = for (
entity <- Marshal(content).to[MessageEntity];
request = HttpRequest(method = HttpMethods.POST, uri = uri, entity = entity);
response <- AkkaHttpUtils.singleRequest(request, 30.seconds, retryOnTCPErrors = true);
response <- AkkaHttpUtils.singleRequest(request, 60.seconds, retryOnTCPErrors = true);
responseBody <- Unmarshal(response.entity).to[String]
) yield (response.status.intValue, Try(responseBody.parseJson.asJsObject).toOption)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment