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 2018/10/31 13:49:36 UTC

[GitHub] rabbah commented on a change in pull request #2795: enable concurrent activation processing

rabbah commented on a change in pull request #2795: enable concurrent activation processing
URL: https://github.com/apache/incubator-openwhisk/pull/2795#discussion_r229697379
 
 

 ##########
 File path: common/scala/src/main/scala/whisk/core/entity/Limits.scala
 ##########
 @@ -72,8 +75,9 @@ protected[core] object ActionLimits extends ArgNormalizer[ActionLimits] with Def
       val time = TimeLimit.serdes.read(obj.get("timeout") getOrElse deserializationError("'timeout' is missing"))
       val memory = MemoryLimit.serdes.read(obj.get("memory") getOrElse deserializationError("'memory' is missing"))
       val logs = obj.get("logs") map { LogLimit.serdes.read(_) } getOrElse LogLimit()
+      val concurrency = obj.get("concurrency") map { ConcurrencyLimit.serdes.read(_) } getOrElse ConcurrencyLimit()
 
 Review comment:
   note to self: check there is a test for successful serdes of previous schema.
   

----------------------------------------------------------------
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