Merge pull request #6391 from jonyhy96/fix-placeholder

This commit is contained in:
Fu Wei 2022-01-04 15:23:52 +08:00 committed by GitHub
commit 4045b7ce86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ func (t *Task) Namespace() string {
}
// 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
}