Skip to content

Commit

Permalink
Fix suggested value for time_zone in range query (elastic#53841)
Browse files Browse the repository at this point in the history
jloleysens authored and jkelastic committed Jan 3, 2020

Verified

This commit was signed with the committer’s verified signature.
pradyunsg Pradyun Gedam
1 parent e653aaa commit 18be159
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -260,7 +260,7 @@ filters.range = {
gt: 1,
lte: 20,
lt: 20,
time_zone: '+1:00',
time_zone: '+01:00',
format: 'dd/MM/yyyy||yyyy',
execution: { __one_of: ['index', 'fielddata'] },
},
Original file line number Diff line number Diff line change
@@ -467,7 +467,7 @@ export function queryDsl(api) {
__one_of: [true, false],
},
tie_breaker: 0,
time_zone: '+1:00',
time_zone: '+01:00',
},
simple_query_string: {
__template: {
@@ -493,7 +493,7 @@ export function queryDsl(api) {
gt: 10,
lte: 20,
lt: 20,
time_zone: '+1:00',
time_zone: '+01:00',
boost: 1.0,
format: 'dd/MM/yyyy||yyyy',
},

0 comments on commit 18be159

Please sign in to comment.