ningyougang commented on issue #2961: ApiGW tests sometimes fail with return code 429 (too many requests in the last minute) URL: https://github.com/apache/incubator-openwhisk/issues/2961#issuecomment-346546284 Has been solved! After checked, it seems the wsk api request number > `60` in my local env (blow is all test cases passed log) ``` hisk.core.cli.test.ApiGwRestTests > Wsk api should verify successful creation and deletion with multiple base paths STANDARD_OUT Action invokes within last minute: 61 Action invokes within last minute: 62 Action invokes within last minute: 63 Action invokes within last minute: 64 Action invokes within last minute: 65 Action invokes within last minute: 66 Action invokes within last minute: 67 Action invokes within last minute: 68 Action invokes within last minute: 69 ``` If i changed the action invocation limit like this ``` limits: invocationsPerMinute: "{{ limit_invocations_per_minute | default(120) }}" ``` Above failed test cases has been `passed` ( org.scalatest.exceptions.TestFailedException: 429 was not equal to 200) But why in my local build/test env, the wsk api request > `60`, i don't know the exact reason. May be my local env's build machine is better.(32 cores cpu, 16GB memory)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
