Files
sablier/pkg/provider/kubernetes/instance_events.go
Alexis Couvreur fad97d7901 fix(provider): add debug logging (#653)
* fix(provider): add debug logging

Add a bunch of debug logging calls

* return a swarm service pointer

* revert to service list with status true

* change trace to debug

* --no-verify
2025-07-30 22:44:20 -04:00

11 lines
270 B
Go

package kubernetes
import "context"
func (p *Provider) NotifyInstanceStopped(ctx context.Context, instance chan<- string) {
informer := p.watchDeployments(instance)
go informer.Run(ctx.Done())
informer = p.watchStatefulSets(instance)
go informer.Run(ctx.Done())
}