From 3ad99a21acf5d3e28d4e7f9e144d4580fd1d4436 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Wed, 4 Dec 2024 12:12:39 +0100 Subject: [PATCH] Comment out the `notifyUsers=false` query parameter since `notifyUsers=false` does not apply to all requests and we've disabled notifications downstream this query param is not sent anymore to allow automation updating upstream issues to work with a non-admin user. --- .../replicate/jira/service/jira/client/JiraRestClient.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/hibernate/infra/replicate/jira/service/jira/client/JiraRestClient.java b/src/main/java/org/hibernate/infra/replicate/jira/service/jira/client/JiraRestClient.java index 0ff2c63..080b648 100644 --- a/src/main/java/org/hibernate/infra/replicate/jira/service/jira/client/JiraRestClient.java +++ b/src/main/java/org/hibernate/infra/replicate/jira/service/jira/client/JiraRestClient.java @@ -41,7 +41,9 @@ * version (included), e.g.: */ // so that we do not spam with all notifications ... -@ClientQueryParam(name = "notifyUsers", value = "false") +// since `notifyUsers=false` does not apply to all requests and we've disabled notifications downstream +// this query param is not sent anymore to allow automation updating upstream issues to work with a non-admin user. +// @ClientQueryParam(name = "notifyUsers", value = "false") public interface JiraRestClient { @GET