File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
ansible/roles/nginx/templates
org/apache/openwhisk/core/limits Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
22
{# needed to enable keepalive to upstream controllers #}
23
23
proxy_http_version 1.1;
24
24
proxy_set_header Connection "";
25
+ proxy_buffers 16 4k;
25
26
26
27
{% if controller .protocol == 'https' %}
27
28
proxy_ssl_session_reuse on;
Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ class ActionLimitsTests extends TestHelpers with WskTestHelpers with WskActorSys
435
435
}
436
436
437
437
for (a <- 1 to 10 ) {
438
- val run = wsk.action.invoke(name, Map (" payload" -> " 128" .toJson))
438
+ val run = wsk.action.invoke(name, Map (" payload" -> " 128" .toJson), blocking = true )
439
439
withActivation(wsk.activation, run) { response =>
440
440
response.response.status shouldBe " success"
441
441
response.response.result shouldBe Some (JsObject (" msg" -> " OK, buffer of size 128 MB has been filled." .toJson))
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class HeadersTests extends FlatSpec with Matchers with ScalaFutures with WskActo
83
83
Http ().singleRequest(httpRequest, connectionContext = connectionContext)
84
84
}
85
85
86
- implicit val config = PatienceConfig (10 seconds, 0 milliseconds)
86
+ implicit val config = PatienceConfig (10 seconds, 100 milliseconds)
87
87
88
88
val basePath = Path (" /api/v1" )
89
89
implicit val wskprops = WskProps ()
You can’t perform that action at this time.
0 commit comments