Error out on invalid signal.
This commit is contained in:
parent
418cd4a855
commit
ac74e4f226
@ -20,7 +20,6 @@ package containerd
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -583,13 +582,11 @@ func (d *Driver) SignalTask(taskID string, signal string) error {
|
|||||||
// The given signal will be forwarded to the target taskID.
|
// The given signal will be forwarded to the target taskID.
|
||||||
// Please checkout https://github.com/hashicorp/consul-template/blob/master/signals/signals_unix.go
|
// Please checkout https://github.com/hashicorp/consul-template/blob/master/signals/signals_unix.go
|
||||||
// for a list of supported signals.
|
// for a list of supported signals.
|
||||||
sig := os.Interrupt
|
sig, ok := signals.SignalLookup[signal]
|
||||||
if s, ok := signals.SignalLookup[signal]; ok {
|
if !ok {
|
||||||
sig = s
|
return fmt.Errorf("Invalid signal: %s", signal)
|
||||||
} else {
|
|
||||||
d.logger.Warn("unknown signal to send to task, using SIGINT instead", "signal", signal, "task_id", handle.taskConfig.ID)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return handle.signal(d.ctxContainerd, sig)
|
return handle.signal(d.ctxContainerd, sig)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user