ningyougang commented on code in PR #5290: URL: https://github.com/apache/openwhisk/pull/5290#discussion_r929664722
########## common/scala/src/main/scala/org/apache/openwhisk/core/connector/Message.scala: ########## @@ -380,9 +380,13 @@ object Activation extends DefaultJsonProtocol { /** Get "StatusCode" from result response set by action developer * */ def userDefinedStatusCode(result: Option[JsValue]): Option[Int] = { - val statusCode = JsHelpers - .getFieldPath(result.get.asJsObject, ERROR_FIELD, "statusCode") - .orElse(JsHelpers.getFieldPath(result.get.asJsObject, "statusCode")) + val statusCode: Option[JsValue] = result match { + case Some(JsObject(fields)) => + JsHelpers + .getFieldPath(JsObject(fields), ERROR_FIELD, "statusCode") + .orElse(JsHelpers.getFieldPath(JsObject(fields), "statusCode")) + case _ => None Review Comment: Yes, for array result, seems can't get the userDefined statusCode -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@openwhisk.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org