(taskName string, namespace string)
| 244 | } |
| 245 | |
| 246 | func taskNameWithNamespace(taskName string, namespace string) string { |
| 247 | if after, ok := strings.CutPrefix(taskName, NamespaceSeparator); ok { |
| 248 | return after |
| 249 | } |
| 250 | return fmt.Sprintf("%s%s%s", namespace, NamespaceSeparator, taskName) |
| 251 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…