[skip e2e] Add comment for proxy task (#15089)

Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>
This commit is contained in:
shaoyue 2022-01-10 18:33:46 +08:00 committed by GitHub
parent cea5853cfb
commit 2e8dd74c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4897,18 +4897,22 @@ type DropAliasTask struct {
result *commonpb.Status
}
// TraceCtx returns the context for trace
func (d *DropAliasTask) TraceCtx() context.Context {
return d.ctx
}
// ID returns the MsgID
func (d *DropAliasTask) ID() UniqueID {
return d.Base.MsgID
}
// SetID sets the MsgID
func (d *DropAliasTask) SetID(uid UniqueID) {
d.Base.MsgID = uid
}
// Name returns the name of the task
func (d *DropAliasTask) Name() string {
return DropAliasTaskName
}