-
Notifications
You must be signed in to change notification settings - Fork 196
fix(worker): Fix "attempting to index 0 total files" zoekt issue #488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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