This is an automated email from the ASF dual-hosted git repository.

membphis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git


The following commit(s) were added to refs/heads/master by this push:
     new b32cec7  test: use the same buffer size across different platforms 
(#3436)
b32cec7 is described below

commit b32cec71aac63138b0f3fb24493b0ed9f44edf60
Author: 罗泽轩 <[email protected]>
AuthorDate: Wed Jan 27 22:38:09 2021 +0800

    test: use the same buffer size across different platforms (#3436)
    
    The buffer size in x86 is 8k while the one in arm64 is 16k.
    
    Fix #3355
---
 t/APISIX.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/APISIX.pm b/t/APISIX.pm
index 304327d..90417e1 100644
--- a/t/APISIX.pm
+++ b/t/APISIX.pm
@@ -382,6 +382,7 @@ _EOC_
 
     underscores_in_headers on;
     lua_socket_log_errors off;
+    client_body_buffer_size 8k;
 
     upstream apisix_backend {
         server 0.0.0.1;

Reply via email to