0 [main] bash 6884 fork: child -1 - CreateProcessW failed for 'C:\Program Files\Git\usr\bin\bash.exe', errno 13
Sometimes windows gives you this strange error. it happend for me with php, shell scripts, terraform calling shellscripts, ...
windows has problems (i read something about a security measure) creating to "many" processes in a short timeframe.
the solution for me was to disable multithreading in the program which calls the bash scripts or in general has such problems.
for terraform its:
terraform plan -parallelism=1
links:
- cover image: by stevepb Steve Buissinne https://pixabay.com/photos/car-accident-damage-crash-insurance-153817
Top comments (1)
How to resolve it ?