Possible caching glitch. I discovered that changin...
# development
c
Possible caching glitch. I discovered that changing a the name of a python_requirements target mid-run caused an unrecoverable issue for subsequent runs until I restarted the
pantsd
process (by removing
.pids
directory)
Copy code
raise ResolveError.did_you_mean(
pants.build_graph.address.ResolveError: The address 3rdparty/python:python-default from the `AllTargets` rule does not exist.

The target name ':python-default' is not defined in the directory 3rdparty/python. Did you mean one of these target names?

  * :pydevd-pycharm
  * :python
That seems to suggest, that the result is cached using a hash that matches my current state of my files, but that wasn’t the state going into the process..
w
i’d definitely appreciate a bug for this one.