[skip ci]Improve drop collection doc grammar (#10239)

Signed-off-by: tumao <yan.wang@zilliz.com>
pull/10310/head
Tumao 2021-10-20 19:35:56 +08:00 committed by GitHub
parent 12965c3ce5
commit 788c69dfa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ The execution flow of `Drop Collection` is shown in the following figure:
![drop_collection](./graphs/dml_drop_collection.png)
1. Firstly, `SDK` starts a `DropCollection` request to `Proxy` via `Grpc`, the `proto` is defined as follows:
1. Firstly, `SDK` sends a `DropCollection` request to `Proxy` via `Grpc`, the `proto` is defined as follows:
```proto
service MilvusService {
...
@ -22,7 +22,7 @@ message DropCollectionRequest {
}
```
2. Once the `DropCollection` request is received, the `Proxy` would wrap this request into `DropCollectionTask`, and push this task into `DdTaskQueue` queue. After that, `Proxy` would call method of `WatiToFinish` to wait until the task is finished.
2. Once the `DropCollection` request is received, the `Proxy` would wrap this request into `DropCollectionTask`, and push this task into `DdTaskQueue` queue. After that, `Proxy` would call `WatiToFinish` method to wait until the task is finished.
```go
type task interface {
TraceCtx() context.Context