Fixed regex in cat.recovery REST tes
The time column should accept integer ms or floating point seconds
This commit is contained in:
parent
055234c893
commit
0543d46c1d
|
@ -27,7 +27,7 @@
|
||||||
(
|
(
|
||||||
index1 \s+
|
index1 \s+
|
||||||
\d \s+ # shard
|
\d \s+ # shard
|
||||||
\d+ms \s+ # time
|
(?:\d+ms|\d+(?:\.\d+)?s) \s+ # time in ms or seconds
|
||||||
(store|replica|snapshot|relocating) \s+ # type
|
(store|replica|snapshot|relocating) \s+ # type
|
||||||
(init|index|verify_index|translog|finalize|done) \s+ # stage
|
(init|index|verify_index|translog|finalize|done) \s+ # stage
|
||||||
[-\w./]+ \s+ # source_host
|
[-\w./]+ \s+ # source_host
|
||||||
|
|
Loading…
Reference in New Issue