You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[chore] Remove parallelism to fix race condition (#38189)
I'm seeing the following error in CI on many PRs:
```
Running target 'fmt' in module 'extension/observer/ecsobserver' as part of group 'all'
make --no-print-directory -C extension/observer/ecsobserver fmt
/home/runner/work/opentelemetry-collector-contrib/opentelemetry-collector-contrib/.tools/gofumpt -l -w .
error: size of generated_package_test.go changed during reading (from 169 to >=170 bytes)
make[3]: *** [../../../Makefile.Common:201: fmt] Error 2
```
Best I can tell this is a race condition between the `fmt` and
`generate` targets. This is an attempt to reduce possibility for race
condition by reducing parallelism in the check and target that are
failing.
0 commit comments