Open Bios-Marcel opened 1 year ago
Output shows, that the virus arithmetic.New() has been applied to a string concatenation, which causes a build failure.
arithmetic.New()
internal/service/routing.go:168:9: invalid operation: operator - not defined on "/" (constant of type string)
This was the code:
func HealthPath() string { return "/" + path.Join(BasePathInternalCases(), "health") }
I am assuming this is not intended behaviour.
Good catch! Indeed… not the intended behavior.
Output shows, that the virus
arithmetic.New()
has been applied to a string concatenation, which causes a build failure.This was the code:
I am assuming this is not intended behaviour.