-
Notifications
You must be signed in to change notification settings - Fork 412
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
bug: task git.status
does a sync call in it's on_exit
#1569
Comments
is it reproducible with the minimal template you sent? Idea: rockspec has a dependency which has the plugin itself as dependency again |
@max397574 that shouldn't cause issue |
I fixed some things related to running tasks, that may have fixed the issue you experienced.
|
This comment was marked as outdated.
This comment was marked as outdated.
I'm debugging your profile. Will add some remarks.
|
Found the issue (not lazy.nvim's fault):
It's never a good idea to import modules top-level in specs. Always use closures... |
I was able to replicate the bug with a repro.lua: -- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"folke/tokyonight.nvim",
"stevearc/conform.nvim",
--"nvim-treesitter/nvim-treesitter",
--{ "nvim-neotest/neotest-plenary" },
{
"nvim-neotest/neotest",
opts = {
adapters = {
["neotest-plenary"] = {
min_init = "./tests/init.lua",
},
}
},
},
"nvim-neotest/nvim-nio",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
change_detection = {
notify = false,
},
-- install = {
-- -- missing = false,
-- },
checker = {
enabled = true,
frequency = 300,
notify = false,
},
})
vim.cmd.colorscheme("tokyonight")
vim.defer_fn(function()
require("lazy.manage.checker").check()
if require("lazy.status").has_updates() then
print(require('lazy.status').updates())
end
require("lazy.manage.checker").check()
if require("lazy.status").has_updates() then
print(require('lazy.status').updates())
end
require("lazy.manage.checker").check()
if require("lazy.status").has_updates() then
print(require('lazy.status').updates())
end
end, 100) I think it is the same problem as #1568, the git-remote-https program gets hung, but it seems that somewhere along the .check() function stack, there is a synchronous function that forces the function to wait for the git-remote-https process to end (which takes a while). This problem also occurs with the opts.checker auto checker for status lines (which causes neovim to randomly freeze up for about two minutes every five minutes (because my checker frequency is 300s). |
What is this repro supposed to show? It doesn't do anything special for me... |
For me the git-remote-https process hangs about 80% of the time that neovim is opened with the repro. Somewhere in the .check() is synchronous (at least that's the best explanation I have), so it causes neovim to completely freeze up, using 100% of a single core for the 2 minutes that git-remote-https is sitting. |
The only part that could cause this is if you have a plugin dir with a git dirty |
git.status
does a sync call in it's on_exit
unfortunately that did not fix the problem. there's still 100% usage on one cpu core |
Did you open the repro and ran |
Closing, since with the latest changes I just released it should no longer happen, even on slower machines. |
Did you check docs and existing issues?
Neovim version (nvim -v)
nightly, pulled 1 hr ago
Operating system/version
arch
Describe the bug
In commit 0614ca6, a bug exists somewhere that causes an infinite loop in something. I don't have many details on it because I am about to fall asleep and it is very late, I am posting the issue now just to get it on your radar so you could do some preliminary checks for something.
Steps To Reproduce
I'll do this tomorrow
Expected Behavior
not to have an infinite loop
Repro
The text was updated successfully, but these errors were encountered: