You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2020/03/19 16:39:08 UTC

[GitHub] [openwhisk-runtime-dotnet] rabbah commented on a change in pull request #33: Increased MaxRequestBodySize, so larger zip files can be uploaded

rabbah commented on a change in pull request #33: Increased MaxRequestBodySize, so larger zip files can be uploaded
URL: https://github.com/apache/openwhisk-runtime-dotnet/pull/33#discussion_r395164907
 
 

 ##########
 File path: tests/src/test/scala/actionContainers/DotNet3_1ActionContainerTests.scala
 ##########
 @@ -100,6 +101,19 @@ class DotNet3_1ActionContainerTests extends BasicActionRunnerTests with WskActor
     })
   }
 
+  it should "support a large payload" in {
+    val (out, err) = withActionContainer() { c =>
+      val sb = new StringBuilder(18000000 + functionb64.length());
 
 Review comment:
   ```suggestion
         val sb = " " * (18000000 + functionb64.length())
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services