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/11/16 15:37:57 UTC

[GitHub] houshengbo closed pull request #94: Add Concurrency to Limits

houshengbo closed pull request #94: Add Concurrency to Limits
URL: https://github.com/apache/incubator-openwhisk-client-go/pull/94
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.gitignore b/.gitignore
index e2a8d365..dc15adc0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Godeps/_workspace
 .idea
+*.iml
\ No newline at end of file
diff --git a/whisk/shared.go b/whisk/shared.go
index 78480263..954b2a45 100644
--- a/whisk/shared.go
+++ b/whisk/shared.go
@@ -94,7 +94,8 @@ type Annotations []map[string]interface{}
 type Parameters *json.RawMessage
 
 type Limits struct {
-	Timeout *int `json:"timeout,omitempty"`
-	Memory  *int `json:"memory,omitempty"`
-	Logsize *int `json:"logs,omitempty"`
+	Timeout     *int `json:"timeout,omitempty"`
+	Memory      *int `json:"memory,omitempty"`
+	Logsize     *int `json:"logs,omitempty"`
+	Concurrency *int `json:"concurrency,omitempty"`
 }


 

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