Describe the bug
I've been trying to make some changes to internal/render/ing.go, but they don't work.
To Reproduce
Steps to reproduce the behavior:
Make a change in the (i Ingress) Render in internal/render/ing.go
Make sure the change is going to be visible, for example by inserting return fmt.Errorf("ERROR") in the beginning
Compile using make build or go build
Run ./execs/k9s -c ingress
Expected behavior
We should receive the "ERROR".
Screenshots
N/A
Versions (please complete the following information):
OS: Linux Ubuntu 22.04
K9s: v0.26.6
Additional context
I discovered this issue while using delve to debug. It was impossible to set a breakpoint using b github.com/derailed/k9s/internal/render.(*Ingress).Render.
The command strings ./execs/k9s | grep '(\*Ingress)\.Render' gives an empty output.
Describe the bug I've been trying to make some changes to
internal/render/ing.go
, but they don't work.To Reproduce Steps to reproduce the behavior:
(i Ingress) Render
ininternal/render/ing.go
return fmt.Errorf("ERROR")
in the beginningmake build
orgo build
./execs/k9s -c ingress
Expected behavior We should receive the "ERROR".
Screenshots N/A
Versions (please complete the following information):
Additional context I discovered this issue while using delve to debug. It was impossible to set a breakpoint using
b github.com/derailed/k9s/internal/render.(*Ingress).Render
.The command
strings ./execs/k9s | grep '(\*Ingress)\.Render'
gives an empty output.