[ https://issues.apache.org/jira/browse/AIRFLOW-5387?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16947000#comment-16947000 ]
ASF subversion and git services commented on AIRFLOW-5387: ---------------------------------------------------------- Commit 93bb5e44d8ede09d3301f29de15121901ba010f4 in airflow's branch refs/heads/master from Alejandro Rojas [ https://gitbox.apache.org/repos/asf?p=airflow.git;h=93bb5e4 ] [AIRFLOW-5387] Fix show paused pagination bug (#6100) > Pagination is broken when the config variable hide_paused_dags_by_default is > set to True because showPaused variable is removed > ------------------------------------------------------------------------------------------------------------------------------- > > Key: AIRFLOW-5387 > URL: https://issues.apache.org/jira/browse/AIRFLOW-5387 > Project: Apache Airflow > Issue Type: Bug > Components: ui > Affects Versions: 1.10.4 > Reporter: Guillem Lefait > Assignee: Alejandro > Priority: Minor > > Url parameters are clean to remove useless parameters: > {code:python} > // https://github.com/apache/airflow/blob/master/airflow/www/utils.py#L68-L71 > if 'showPaused' in kwargs: > v = kwargs['showPaused'] > if v or v is None: > kwargs.pop('showPaused') > {code} > When the configuration variable _hide_paused_dags_by_default_ is set to True, > removing the parameter showPaused disable access to the correct paginated > pages when navigating to "Show Paused DAGs" . > Pagination is fine for the first page but when going on second page, only > "active" DAGs are presented. > Fix: > - showPaused parameter should not be removed and therefore lines 68 to 71 > (included) could be removed. > > -- This message was sent by Atlassian Jira (v8.3.4#803005)