【shell】curl 命令出现000返回码

背景

业务过程中,使用put接口调用修改时,curl返回的码是000

原因

  1. put修改的是相同的数据,业务端返回接口较长
  2. 页面调用swagger,很长时间后才返回200
  3. 通过加 --connect-timeout 100 -m 300 解决 (主要是-m参数)
----connect-timeout   <seconds> 设置最大请求时间 
-m /--max-time <seconds> 设置最大传输时间
通过这两个参数,可以解决调用服务超时假死现象。
示例:
curl --connect-timeout 100 -m 300  'http://xxxxx/xxx'

posted @ 2023-04-12 11:18  xiaoyu_jane  阅读(172)  评论(0编辑  收藏  举报