feat: 删除sleep
Some checks failed
Egg Server MIflow / build-image (push) Failing after 32s

This commit is contained in:
zhaoyingbo 2024-09-27 02:33:41 +00:00
parent dc9f4e33dd
commit eb0408fcd4
2 changed files with 0 additions and 6 deletions

View File

@ -1,5 +1,4 @@
import { getActionType } from "@egg/lark-msg-tool"
import { sleep } from "bun"
import { Context } from "../../types"
import groupAgent from "./groupAgent"
@ -32,8 +31,6 @@ const manageBtnClick = async (ctx: Context.Data): Promise<void> => {
* @param {Context.Data} ctx -
*/
export const manageActionMsg = async (ctx: Context.Data) => {
// 在延迟0.5s返回成功后再过0.5秒处理Action信息
await sleep(1000)
const actionType = getActionType(ctx.body)
if (actionType === "button") manageBtnClick(ctx)
if (actionType === "select_static") manageBtnClick(ctx)

View File

@ -1,5 +1,4 @@
import { getIsActionMsg, getIsEventMsg } from "@egg/lark-msg-tool"
import { sleep } from "bun"
import { Context } from "../../types"
import { manageActionMsg } from "./actionMsg"
@ -29,8 +28,6 @@ export const manageBotReq = async (ctx: Context.Data): Promise<Response> => {
// 处理Action消息
if (getIsActionMsg(body)) manageActionMsg(ctx)
// 模拟处理时间
await sleep(500)
// 返回成功响应
return ctx.genResp.ok()
}