From 1fa6f53412cb7b57970ae6ec596a69d70da3482a Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Sat, 6 Nov 2021 12:24:59 +0800 Subject: [PATCH] [skip ci] Fix typo in proxy design doc (#11359) Signed-off-by: Edward Zeng --- docs/design_docs/proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/proxy.md b/docs/design_docs/proxy.md index 201e060e78..835f3ae1ba 100644 --- a/docs/design_docs/proxy.md +++ b/docs/design_docs/proxy.md @@ -283,7 +283,7 @@ The taskID is globally unique and is used to identify the task. OnEnqueue will a for the task. It can be seen that the timestamp of entering the queue must be greater than the timestamp that already exists in the queue, and it will also be greater than the timestamp of the task that exists in activateTask. At the end of the task's OnEnqueue, call the taskQueue's addUnissuedTask to add the task to the unissuedTasks. When OnEnqueue is -executed, the external caller of taskSchdeuler calls WaitToFinish of the task to synchronously block and wait for the +executed, the external caller of taskScheduler calls WaitToFinish of the task to synchronously block and wait for the execution of task to be done. When taskScheduler's background scheduling coroutine decides to schedule a task, it will call the taskQueue's