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 2019/01/23 12:05:08 UTC

[GitHub] cbickel commented on a change in pull request #4234: Add limit to not store activations for a limitted namespace.

cbickel commented on a change in pull request #4234: Add limit to not store activations for a limitted namespace.
URL: https://github.com/apache/incubator-openwhisk/pull/4234#discussion_r250166158
 
 

 ##########
 File path: tools/admin/wskadmin
 ##########
 @@ -132,6 +132,8 @@ def parseArgs():
     subcmd.add_argument('--firesPerMinute', help='trigger fires per minute allowed', type=int)
     subcmd.add_argument('--concurrentInvocations', help='concurrent invocations allowed for this namespace', type=int)
     subcmd.add_argument('--allowedKinds', help='list of runtime kinds allowed in this namespace', nargs='+', type=str)
+    subcmd.add_argument('--enableStoreActivations', help='enable storing of activations to datastore for this namespace', default=None, dest='storeActivations', action='store_true')
+    subcmd.add_argument('--disableStoreActivations', help='disable storing of activations to datastore for this namespace', default=None, dest='storeActivations', action='store_false')
 
 Review comment:
   I can have another look on that one 👍 

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services