You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2023/01/25 23:04:03 UTC

[openwhisk] branch master updated: Fix the bug that match does not exhaustive (#5370)

This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 104c1e8e6 Fix the bug that match does not exhaustive (#5370)
104c1e8e6 is described below

commit 104c1e8e6cca2194da9a46a721626f4584741f23
Author: Dominic Kim <st...@apache.org>
AuthorDate: Thu Jan 26 08:03:56 2023 +0900

    Fix the bug that match does not exhaustive (#5370)
---
 .../src/main/scala/org/apache/openwhisk/core/connector/Message.scala     | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/scala/src/main/scala/org/apache/openwhisk/core/connector/Message.scala b/common/scala/src/main/scala/org/apache/openwhisk/core/connector/Message.scala
index 1be6ece8d..9de194798 100644
--- a/common/scala/src/main/scala/org/apache/openwhisk/core/connector/Message.scala
+++ b/common/scala/src/main/scala/org/apache/openwhisk/core/connector/Message.scala
@@ -655,6 +655,7 @@ object ContainerCreationError extends Enumeration {
       case BlackBoxError                    => "a blackbox error happens"
       case ZeroNamespaceLimit               => "the namespace has 0 limit configured"
       case TooManyConcurrentRequests        => "too many concurrent requests are in flight."
+      case InvalidActionLimitError          => "a configured action limit is invalid."
     }
   }