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

Head commit for run:
00239036795f9f03276c6ce9c87cbb2137a2a74f / 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/12648327525

With regards,
GitHub Actions via GitBox


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

Reply via email to