This is an automated email from the ASF dual-hosted git repository.
kishoreg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 9dd03e4 added jira reporter name between quotes (#6183)
9dd03e4 is described below
commit 9dd03e4adbb758dabda760006aa809e8754c0305
Author: cyrilou242 <[email protected]>
AuthorDate: Sun Nov 1 15:41:34 2020 +0100
added jira reporter name between quotes (#6183)
---
.../apache/pinot/thirdeye/notification/commons/ThirdEyeJiraClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/commons/ThirdEyeJiraClient.java
b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/commons/ThirdEyeJiraClient.java
index 10e00d0..6e40b4d 100644
---
a/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/commons/ThirdEyeJiraClient.java
+++
b/thirdeye/thirdeye-pinot/src/main/java/org/apache/pinot/thirdeye/notification/commons/ThirdEyeJiraClient.java
@@ -104,7 +104,7 @@ public class ThirdEyeJiraClient {
StringBuilder jiraQuery = new StringBuilder();
// Query by project first as a jira optimization
jiraQuery.append("project=").append(project);
- jiraQuery.append(" and ").append("reporter IN
(").append(reporter).append(")");
+ jiraQuery.append(" and ").append("reporter IN
(\"").append(reporter).append("\")");
jiraQuery.append(" and ").append(buildQueryOnLabels(labels));
jiraQuery.append(" and ").append(buildQueryOnCreatedBy(lookBackMillis));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]