(namespace string, entityName string, activationID interface{})
| 1153 | } |
| 1154 | |
| 1155 | func 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 | |
| 1168 | func printInvocationMsg( |
| 1169 | qualifiedName QualifiedName, |
no outgoing calls
no test coverage detected