MCPcopy Create free account
hub / github.com/apache/openwhisk-cli / printBlockingTimeoutMsg

Function printBlockingTimeoutMsg

commands/action.go:1155–1166  ·  view source on GitHub ↗
(namespace string, entityName string, activationID interface{})

Source from the content-addressed store, hash-verified

1153}
1154
1155func printBlockingTimeoutMsg(namespace string, entityName string, activationID interface{}) {
1156 fmt.Fprintf(
1157 colorable.NewColorableStderr(),
1158 wski18n.T(
1159 "{{.ok}} invoked /{{.namespace}}/{{.name}}, but the request has not yet finished, with id {{.id}}\n",
1160 map[string]interface{}{
1161 "ok": color.GreenString("ok:"),
1162 "namespace": boldString(namespace),
1163 "name": boldString(entityName),
1164 "id": boldString(activationID),
1165 }))
1166}
1167
1168func printInvocationMsg(
1169 qualifiedName QualifiedName,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected