优化代码

This commit is contained in:
2025-09-27 01:09:20 +08:00
parent 5d1b642cc8
commit 25474f851e
3 changed files with 2 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ func (c *ChirpStackTransport) Send(address string, payload []byte) (*transport.S
// - WithQueueItemDevEui 指定目标设备的 EUI。
// - WithBody 设置请求体。
params := device_service.NewDeviceServiceEnqueueParams().
WithTimeout(5 * time.Second). // TODO 这里应该从配置文件里读
WithTimeout(time.Duration(c.config.APITimeout) * time.Second).
WithQueueItemDevEui(address).
WithBody(body)