herlambang commented on issue #31202:
URL: https://github.com/apache/airflow/issues/31202#issuecomment-1543937520

   **UAT Test Result v2.6.1rc1**
   
   **Dashboard Footer:**  
   Version: v2.6.1  
   Git Version: .release:06e3aa3e40948efcb53e9320b78d6b33b875ad12  
   
   **Fix unable to remove DagRun and TaskInstance with note (#30987)** ✅ 
   
   - open page `/dagrun/list/`
   - edit 1 dag run, fill note field and save
   - delete dag run previously edited
   - dag run deleted
   - open page `/taskinstance/list/`
   - edit 1 task, fill note field and save
   - delete task instance previously edited
   - task instance deleted
   
   
   **Fix template error when iterating None value and fix params documentation 
(#31078)** ✅ 
   
   - Create dag with params
   ```python
   "array_param": Param(
       None,
       type=["null", "array"],
   ),
   ```
   - Click dag's play button, select `Trigger DAG w/ config`
   - Page loaded without error
   - Form field `array_param` shown with empty textbox
   - `Generated Configuration JSON` shows
   ```json
   {
       "array_param": null
   }
   ```
   
   **Fix unmasked env var on task detail view (#31125)** ✅ 
   
   - Create variable with name contains `secret`
   - Set environment variable with secret variable in an operator
   ```python
   run_this = BashOperator(
       task_id="masked_envvar",
       bash_command="echo 1",
       env={
           "ENVVAR_NAME": "{{ var.value.secret_service }}"
       },
   )
   ```
   - Run the dag and open task instance detail page
   - Task Attributes `env` is masked
   ```
   env  {'ENVVAR_NAME': '***'}
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to