Skip to content

Commit c628dbf

Browse files
committed
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.
1 parent 3a63262 commit c628dbf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/org/hibernate/infra/replicate/jira/service/jira/client/JiraRestClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
* version (included), e.g.:
4242
*/
4343
// so that we do not spam with all notifications ...
44-
@ClientQueryParam(name = "notifyUsers", value = "false")
44+
// since `notifyUsers=false` does not apply to all requests and we've disabled notifications downstream
45+
// this query param is not sent anymore to allow automation updating upstream issues to work with a non-admin user.
46+
// @ClientQueryParam(name = "notifyUsers", value = "false")
4547
public interface JiraRestClient {
4648

4749
@GET

0 commit comments

Comments
 (0)