|
@@ -107,8 +107,12 @@ public class GigThirdApiController {
|
|
// 3.实际操作
|
|
// 3.实际操作
|
|
|
|
|
|
if (StrUtil.isNotBlank(requestId)) {
|
|
if (StrUtil.isNotBlank(requestId)) {
|
|
- // 睡100ms,解决阿拉钉回调过快,找不到requestId的问题
|
|
|
|
- Thread.sleep(100);
|
|
|
|
|
|
+ try {
|
|
|
|
+ // 睡100ms,解决阿拉钉回调过快,找不到requestId的问题
|
|
|
|
+ Thread.sleep(100);
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ log.warn("sleep异常", e);
|
|
|
|
+ }
|
|
|
|
|
|
gigThirdApiService.oladingNotify(requestId, req);
|
|
gigThirdApiService.oladingNotify(requestId, req);
|
|
}
|
|
}
|