Merge pull request #13309 from presztak/proxyV2_with_stop_signal

e2e: Call WithStopSignal on proxyV2 object
This commit is contained in:
Marek Siarkowicz 2022-02-22 09:48:28 +01:00 committed by GitHub
commit 5ac2c0d432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ func (p *proxyEtcdProcess) Close() error {
}
func (p *proxyEtcdProcess) WithStopSignal(sig os.Signal) os.Signal {
p.proxyV3.WithStopSignal(sig)
p.proxyV2.WithStopSignal(sig)
p.proxyV3.WithStopSignal(sig)
return p.etcdProc.WithStopSignal(sig)
}