Skip to content

Commit ad99088

Browse files
Fix bug
1 parent a9c44af commit ad99088

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

common/scala/src/main/scala/org/apache/openwhisk/core/entity/WhiskAction.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -422,11 +422,7 @@ object WhiskActionVersionList extends MultipleReadersSingleWriterCache[WhiskActi
422422
case None => None
423423
}
424424
} else None
425-
WhiskActionVersionList(
426-
action.namespace.toPath,
427-
action.name,
428-
versions.filter(_.nonEmpty).map(_.get),
429-
defaultVersion)
425+
WhiskActionVersionList(action.path, action.name, versions.filter(_.nonEmpty).map(_.get), defaultVersion)
430426
},
431427
fromCache)
432428
}

0 commit comments

Comments
 (0)