-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable use of concurrency action limits via cli #383
Conversation
Broken due to apache/openwhisk-client-go#91, suggested fix in apache/openwhisk-client-go#105 |
|
||
assetHelper.withCleaner(wsk.action, name) { (action, _) => | ||
action.create( | ||
name, | ||
Some(TestUtils.getTestActionFilename("helloAsync.js")), | ||
memory = Some(memoryLimit), | ||
timeout = Some(timeLimit), | ||
logsize = Some(logLimit)) | ||
logsize = Some(logLimit), | ||
concurrency = Some(concurrencyLimit)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also need to add the expected concurrency value here..?
https://github.com/apache/incubator-openwhisk-cli/blob/0640ecafb67b37f489665c8d46ab054b94a8a763/tests/src/test/scala/org/apache/openwhisk/core/cli/test/WskCliBasicUsageTests.scala#L414
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes! thanks
@mdeuser I think all tests are updated and fixed now |
enable --concurrency flag to set intra-container concurrency limit via wsk cli
requires client-go PR first: apache/openwhisk-client-go#94