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

 ##########
 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()
 
-      ActionLimits(time, memory, logs)
+      ActionLimits(time, memory, logs, concurrency)
 
 Review comment:
   indeed; starting with client-go: 
https://github.com/apache/incubator-openwhisk-client-go/pull/94
   

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


With regards,
Apache Git Services

Reply via email to