This is an automated email from the ASF dual-hosted git repository.
rabbah 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 12ca4e3 Hide version in fallback activation's path (#5025)
12ca4e3 is described below
commit 12ca4e307e3b095a266352b7b12cf5ddaeb44577
Author: Seonghyun Oh <[email protected]>
AuthorDate: Thu Nov 12 00:52:57 2020 +0900
Hide version in fallback activation's path (#5025)
---
.../main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala
b/core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala
index 75d9bd0..6aa0884 100644
---
a/core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala
+++
b/core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/InvokerReactive.scala
@@ -287,7 +287,7 @@ class InvokerReactive(
duration = Some(0),
response = response,
annotations = {
- Parameters(WhiskActivation.pathAnnotation,
JsString(msg.action.asString)) ++
+ Parameters(WhiskActivation.pathAnnotation,
JsString(msg.action.copy(version = None).asString)) ++
Parameters(WhiskActivation.kindAnnotation, JsString(Exec.UNKNOWN))
++ causedBy
})
}