why is pantsd being initialized here? ```> ./pa...
# development
a
why is pantsd being initialized here?
Copy code
> ./pants --no-enable-pantsd -V
23:50:32 [INFO] initializing pantsd...
same with
PANTS_ENABLE_PANTSD=False
h
try
NO_REGEN_PEX=true
I suspect that this first run is the bootstrapping of
pants.pex
for ITs, so it ignores any CLI flags. Also, the flag was renamed to
--no-pantsd
, which might be why the env var doesn’t do anything
a
if the flag was renamed, that makes sense
--no-pantsd
works! thank you!
❤️ 1