You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/08/14 23:16:44 UTC

[GitHub] [airflow] alexbegg opened a new issue #10331: Warnings about refusal to delete permissions on XComModelView

alexbegg opened a new issue #10331:
URL: https://github.com/apache/airflow/issues/10331


   **Apache Airflow version**:
   1.10.11
   
   **Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
   Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.6", GitCommit:"dff82dc0de47299ab66c83c626e08b245ab19037", GitTreeState:"clean", BuildDate:"2020-07-16T00:04:31Z", GoVersion:"go1.14.4", Compiler:"gc", Platform:"darwin/amd64"}
   Server Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.4", GitCommit:"8d8aa39598534325ad77120c120a22b3a990b5ea", GitTreeState:"clean", BuildDate:"2020-03-13T06:39:58Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"}
   
   **Environment**:
   
   - **Cloud provider or hardware configuration**: Azure Kubernetes Service
   - **OS** (e.g. from /etc/os-release): Debian GNU/Linux 10 (buster)
   - **Kernel** (e.g. `uname -a`): Linux airflow-web-65cb7d9cb8-qzcbv 4.15.0-1089-azure #99~16.04.1-Ubuntu SMP Fri Jun 5 15:30:32 UTC 2020 x86_64 GNU/Linux
   - **Install tools**: Helm chart "stable/airflow"
   - **Others**:
   
   **What happened**:
   
   After upgrading from 1.10.10 to 1.10.11 there is some permission warnings in the webserver logs:
   ```
   [2020-08-14 22:19:30,022] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_add Admin
   [2020-08-14 22:19:30,038] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_edit Admin
   ```
   
   It seems to be directly related to https://github.com/apache/airflow/pull/9614 that @kaxil introduced in 1.10.11 which removes the `can_add` and `can_edit` permissions from `XComModelView`, but Airflow can not delete the permissions from that view because relations to those permissions still exist on the "Admin" and "Op" roles.
   
   In more technical terms, the two permissions can't be deleted from `ab_permission_view` table because each have relations to both the Admin's and Op's role_ids in the `ab_permission_view_role` table.
   
   **What you expected to happen**:
   No warnings with Airflow 1.10.11
   
   **How to reproduce it**:
   
   1. Install 1.10.11
   2. Either:
       1. View the logs of the webserver
       2. Run any airflow CLI command, such as `airflow list_users` and view the outputted log messages
   3. After a few lines of the log you will see the warnings
   
   **Anything else we need to know**:
   
   If those 4 role permissions are removed from the `ab_permission_view_role` table the warnings should stop. I think a migration needs to be added, or some logic that cleans up these role permissions is failing to do its job.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil closed issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil closed issue #10331:
URL: https://github.com/apache/airflow/issues/10331


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] Nimesh-K-Makwana edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
Nimesh-K-Makwana edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-900066833


   And solution? Facing similar problem in airflow 2.1.1. Unable to delete or edit list user from airflow UI (being Admin also is not allowing to edit permission of other users).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] tooptoop4 commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
tooptoop4 commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-704884445


   i get same warning on 1.10.12


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] Nimesh-K-Makwana commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
Nimesh-K-Makwana commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-900066833


   And solution? Facing similar problem in airflow 2.1.1. Unable to delete or edit list user from airflow ui.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka removed a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka removed a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933070592


   I solved this by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] zachliu commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
zachliu commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933512994


   > I solved `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin` after upgrading to Airflow 2.1.4 by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings
   
   interesting, i did what you said and i can still clear on DAG Runs as an admin. what does this permission do? :joy_cat: 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933070592


   I solved this by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933070592


   I solved this by removing "can clear" permission from Admin role. Likewise try doing for other role.permission delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] char101 commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
char101 commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-992196548


   Check `base_permissions` in https://github.com/apache/airflow/blob/main/airflow/www/views.py#L3982, I think it should equal the values in the table `ab_permission_view`.
   
   For example to fix this message `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.can_create User`, add `permissions.ACTION_CAN_CREATE` to `base_permissions` in the `class DagRunModelView`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-827545631


   cc @jedcunningham Can you take a look at it -- the warning will show once you update from 1.10.x


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933070592


   I solved this by removing "can clear" permission from Admin role


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933071898


   I solved `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin` after upgrading to Airflow 2.1.4 by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] zachliu edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
zachliu edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933512994


   > I solved `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin` after upgrading to Airflow 2.1.4 by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings
   
   interesting, i tried what you said unfortunately it didn't stop the warning messages (did you have to reboot the web server?) and i can still clear on DAG Runs as an admin. what does this permission do? :joy_cat: 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933071898


   I solved `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin` in Airflow 2.1.4 by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933071898


   I solved this by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] zachliu commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
zachliu commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-758098634


   i got the same warnings on `2.0.0` (`release:2.0.0+ab5f770bfcd8c690cbe4d0825896325aca0beeca`):
   
   ```
   2021-01-11T12:13:35.605-05:00	[2021-01-11 17:13:35,604] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_pickle_info Admin
   
   2021-01-11T12:13:35.613-05:00	[2021-01-11 17:13:35,613] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_elasticsearch Admin
   
   2021-01-11T12:13:35.621-05:00	[2021-01-11 17:13:35,621] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_dagrun_success Admin
   
   ...
   ```
   i checked the database, it's been migrated successfully `alembic_version` is `e959f08ac86c`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kosteev commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kosteev commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-883428660


   For Airflow 2.1.1 similar warnings are seen in the logs:
   """
   WARNING - Refused to delete permission view, assoc with role exists My Profile.userinfoedit Admin
   WARNING - Refused to delete permission view, assoc with role exists My Profile.can_edit Admin
   """


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] eladkal commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
eladkal commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-866190105


   Adding 2.1 label due to report of https://github.com/apache/airflow/issues/16155


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-992552071


   @blag Can you take a look at this when you have time plz


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-739817095


   Hey @kaxil - are we doing anything about it in 2.0.0rc1? Or should we postpone? 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] boring-cyborg[bot] commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
boring-cyborg[bot] commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-674307533


   Thanks for opening your first issue here! Be sure to follow the issue template!
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-739979377


   Yeah not critical --- just annoying warning. Moved to 2.1


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] tooptoop4 edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
tooptoop4 edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-704884445


   i get same warning on 1.10.12
   
   also get this:
   
   [2020-10-07 09:10:15,238] {manager.py:440} ERROR - Add View Menu Error: (MySQLdb._exceptions.IntegrityError) (1062, "Duplicate entry 'mydagname' for key 'name'")
   [SQL: INSERT INTO ab_view_menu (name) VALUES (%s)]


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-758108624


   > i got the same warnings on `2.0.0` (`release:2.0.0+ab5f770bfcd8c690cbe4d0825896325aca0beeca`):
   > 
   > ```
   > 2021-01-11T12:13:35.605-05:00	[2021-01-11 17:13:35,604] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_pickle_info Admin
   > 
   > 2021-01-11T12:13:35.613-05:00	[2021-01-11 17:13:35,613] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_elasticsearch Admin
   > 
   > 2021-01-11T12:13:35.621-05:00	[2021-01-11 17:13:35,621] {{manager.py:547}} WARNING - Refused to delete permission view, assoc with role exists Airflow.can_dagrun_success Admin
   > 
   > ...
   > ```
   > 
   > i checked the database, it's been migrated successfully `alembic_version` is `e959f08ac86c`
   
   Yeah currently we don't have migrations that remove those view permission -- but they are harmless warning that you can ignore
   
   cc @jhtimmins 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] krishnacdunuka edited a comment on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
krishnacdunuka edited a comment on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-933071898


   I solved `WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin` by removing "clear on DAG Runs" permission from Admin role. Likewise try doing for other delete refusal warnings


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] iicky commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
iicky commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-883727588


   Same here for version 2.1.2 - just appeared on upgrade. 
   
   ```
   [2021-07-20 21:40:46,109] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_create Admin
   [2021-07-20 21:40:46,135] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_edit Admin
   [2021-07-20 21:40:46,161] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_delete Admin
   [2021-07-20 21:40:46,308] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_create Admin
   [2021-07-20 21:40:46,340] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_edit Admin
   [2021-07-20 21:40:46,370] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_delete Admin
   [2021-07-20 21:40:46,640] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_create Admin
   [2021-07-20 21:40:46,666] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_edit Admin
   [2021-07-20 21:40:46,688] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists View Menus.can_delete Admin
   [2021-07-20 21:40:46,816] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin
   [2021-07-20 21:40:47,037] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin
   [2021-07-20 21:40:47,326] {manager.py:565} WARNING - Refused to delete permission view, assoc with role exists DAG Runs.clear Admin
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] jedcunningham commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
jedcunningham commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-1075741962


   I think this might have been fixed in #21483.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] kaxil commented on issue #10331: Warnings about refusal to delete permissions on XComModelView

Posted by GitBox <gi...@apache.org>.
kaxil commented on issue #10331:
URL: https://github.com/apache/airflow/issues/10331#issuecomment-1075808684


   We can reopen if someone reports it after 2.2.5 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org