tidb http api 返回失败

【 TiDB 使用环境】生产环境 /测试/ Poc
【 TiDB 版本】
【复现路径】做过哪些操作出现的问题
【遇到的问题:问题现象及影响】
【资源配置】进入到 TiDB Dashboard -集群信息 (Cluster Info) -主机(Hosts) 截图此页面
【附件:截图/日志/监控】

start_job_id=10&limit=1 这个写法不支持了么?懵ing

[root@centos7 ~]# curl -s localhost:10080/ddl/history?start_job_id=10&limit=1
[1] 91151
[root@centos7 ~]# when 'start_job_id' is specified, it must work with a 'limit'
[1]+  Done                    curl -s localhost:10080/ddl/history?start_job_id=10
[root@centos7 ~]#
[root@centos7 ~]#
[root@centos7 ~]# curl -s localhost:10080/ddl/history?start_job_id=10 -d "limit=1" | head -n 5
[
 {
  "id": 9,
  "type": 3,
  "schema_id": 1,
[root@centos7 ~]#

in doc,

加个双引号就好, &在 shell 里会被放到后台执行,所以不能直接执行

curl -s localhost:10080/ddl/history?"start_job_id=10&limit=1"