feat(event-proxy): event转发新增prev环境
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 1m3s
Egg Server CI/CD / refresh-image (push) Successful in 12s
Egg Server CI/CD / fast-deploy (push) Successful in 2s

This commit is contained in:
zhaoyingbo 2024-10-29 07:14:32 +00:00
parent 4054693602
commit df80ae9edc

View File

@ -28,7 +28,11 @@ class AttachService extends NetToolBase {
* @returns {Promise<void>}
*/
async proxyMiChatEvent(body: LarkEvent.Data) {
const hostList = ["michat-staging.ai.srv", "michat.ai.srv"]
const hostList = [
"michat-staging.ai.srv",
"michat-preview.ai.srv",
"michat.ai.srv",
]
const path = "/api/v1/bypass/robot_event_callback"
for (const host of hostList) {
const URL = `http://${host}${path}`