Add missing spaces to queries
A few queries are missing spaces between AND operators. Add them back in. Change-Id: Id6a0b620f6544833f02cf4e39f79120643e10b5b
This commit is contained in:
parent
964e9ad646
commit
a5979597e8
@ -81,7 +81,7 @@ def result_ready(review, patch, name, build_short_uuid):
|
||||
'AND build_status:"FAILURE" '
|
||||
'AND build_change:"%s" '
|
||||
'AND build_patchset:"%s" '
|
||||
'AND build_name:"%s"'
|
||||
'AND build_name:"%s" '
|
||||
'AND build_short_uuid:%s' %
|
||||
(review, patch, name, build_short_uuid))
|
||||
|
||||
@ -96,8 +96,8 @@ def files_ready(review, patch, name, build_short_uuid):
|
||||
"""
|
||||
return generic('build_status:"FAILURE" '
|
||||
'AND build_change:"%s" '
|
||||
'AND build_patchset:"%s"'
|
||||
'AND build_name:"%s"'
|
||||
'AND build_patchset:"%s" '
|
||||
'AND build_name:"%s" '
|
||||
'AND build_short_uuid:%s' %
|
||||
(review, patch, name, build_short_uuid),
|
||||
facet='filename')
|
||||
@ -111,7 +111,7 @@ def single_patch(query, review, patch, build_short_uuid):
|
||||
"""
|
||||
return generic('%s '
|
||||
'AND build_change:"%s" '
|
||||
'AND build_patchset:"%s"'
|
||||
'AND build_patchset:"%s" '
|
||||
'AND build_short_uuid:%s' %
|
||||
(query, review, patch, build_short_uuid))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user