You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by li...@apache.org on 2021/10/13 16:31:28 UTC

[dolphinscheduler] branch dev updated: fix bug: 6523 Failed to authorize resource (#6524)

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

lidongdai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 8606cbd  fix bug: 6523 Failed to authorize resource (#6524)
8606cbd is described below

commit 8606cbd493eba950d3e5b95d8c8f891e669a48e8
Author: OS <29...@users.noreply.github.com>
AuthorDate: Thu Oct 14 00:31:23 2021 +0800

    fix bug: 6523 Failed to authorize resource (#6524)
---
 dolphinscheduler-ui/src/js/conf/home/store/security/actions.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
index 6ce4457..b6b5a87 100644
--- a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
+++ b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js
@@ -218,7 +218,7 @@ export default {
 
     // Authorized project
     const p1 = new Promise((resolve, reject) => {
-      io.get(`${o.category}/authorize-resource-tree`, param, res => {
+      io.get(`${o.category}/authed-resource-tree`, param, res => {
         resolve(res.data)
       }).catch(e => {
         reject(e)