fix(worker): Fix "attempting to index 0 total files" zoekt issue#488
fix(worker): Fix "attempting to index 0 total files" zoekt issue#488brendan-kellam merged 2 commits intomainfrom
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
This comment has been minimized.
This comment has been minimized.
|
4.6.6 still has some regression that ends up in some repos consistently erroring out with error: see: #492 @ |
Heya - did you happen to upgrade to 4.6.5 prior to 4.6.6? If so, I suspect that maybe those repos have gotten into a bad state where HEAD was not set correctly. |
|
continuing the discussion here: #492 |
Regression was introduced in #483 - the tl;dr is that
git init --bare+git fetchleaves HEAD pointing to a non-existent default branch. This hot fix changes it back to usegit cloneand instead deletesremote.origin.urlafter cloning.Fixes #487