The GitHub Actions job "Tests" on airflow.git has succeeded.
Run started by GitHub user eladkal (triggered by eladkal).

Head commit for run:
109d8ddfc15d8e1bf9bc5edf5f8a4dd115b2cd64 / Kasper J. Hermansen <[email protected]>
fix: correctly shutdown xcom after job is complete

I got the following logs when using the original statement

```
docker run -u 1000 -it alpine sh # alpine container seems to be run under uid 
1000 in kubernetes
sh -c trap "exit 0" INT; while true; do sleep 1; done;
````

```
kill -2 $(pgrep -u $(whoami) -f 'trap')
```

```
whoami
whoami: unknown uid 1000
```

```
pgrep -f 'trap' # returns no processes
```

instead with:

```
kill -2 $(pgrep -u $(id -u) -f 'sh')
```

Signed-off-by: Kasper J. Hermansen <[email protected]>

Report URL: https://github.com/apache/airflow/actions/runs/12928841066

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to