This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new edb9b0d99 fix(opsgenie): align access-rights error with docs (#8976)
edb9b0d99 is described below

commit edb9b0d99e4aba6fe10714e265f9cbc7f19ae410
Author: TOGEP <[email protected]>
AuthorDate: Thu Jul 9 16:07:25 2026 +0900

    fix(opsgenie): align access-rights error with docs (#8976)
---
 backend/plugins/opsgenie/api/connection_api.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/plugins/opsgenie/api/connection_api.go 
b/backend/plugins/opsgenie/api/connection_api.go
index c2844efaa..a56118cc7 100644
--- a/backend/plugins/opsgenie/api/connection_api.go
+++ b/backend/plugins/opsgenie/api/connection_api.go
@@ -48,7 +48,7 @@ func testOpsgenieConn(ctx context.Context, connection 
models.OpsgenieConn) (*plu
        }
 
        if response.StatusCode == http.StatusForbidden {
-               return nil, errors.HttpStatus(http.StatusForbidden).New("API 
Key need 'Read' and 'Configuration access' Access rights")
+               return nil, errors.HttpStatus(http.StatusForbidden).New("API 
Key needs 'Read', 'Create/Update', and 'Configuration Access' access rights")
        }
 
        if response.StatusCode == http.StatusOK || response.StatusCode == 
http.StatusAccepted {

Reply via email to