fix: use _ for consistency

Signed-off-by: haoyun <yun.hao@daocloud.io>
This commit is contained in:
haoyun 2021-12-21 14:28:47 +08:00
parent 653f2f1ce4
commit ac81297065

View File

@ -86,7 +86,7 @@ func (t *Task) Namespace() string {
} }
// PID of the task // PID of the task
func (t *Task) PID(_ctx context.Context) (uint32, error) { func (t *Task) PID(_ context.Context) (uint32, error) {
return uint32(t.pid), nil return uint32(t.pid), nil
} }