指定为秒时,Gerrit时间搜索运算符不起作用

时间:2018-08-27 02:09:05

标签: url gerrit

如果我使用

/changes/?q=status:merged+after:2018-08-25

它可以返回结果,

但是,如果使用

/changes/?q=status:merged+after:2018-08-25 00:00:00

它返回[]

根据document,它可以像这样搜索时间。

[[after_since]] after:'TIME'/since:'TIME':: + Changes modified after the given 'TIME', inclusive. Must be in the format `2006-01-02[ 15:04:05[.890][ -0700]]`; omitting the time defaults to 00:00:00 and omitting the timezone defaults to UTC. 指定秒数时如何查询?我的参数格式不正确吗?

1 个答案:

答案 0 :(得分:1)

使用时:

/changes/?q=status:merged+after:2018-08-25 00:00:00

2018-08-25部分被用作after:值。 00:00:00部分被用作自由文本查询词。

after:的值应用引号引起来:

/changes/?q=status:merged+after:"2018-08-25 00:00:00"