That request type is not allowed: Invalid request type #55
-
Hi there! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Thank you for catching this. This error is what happens when the method (GET/POST/PUT) isn't correct. My guess is that you have the latest Lua code, which sends a POST, but the Go binary hasn't been rebuilt, so the endpoint is still expecting a GET (this was changed recently). I need to adjust the build process so that the binary is force-rebuilt even when it already exists, when someone updates the plugin. I've just pushed up those changes directly to the main branch. Can you update to the latest version of the plugin? It should automatically rebuild when you close and reopen Neovim, but if not, then run this:
Does that address the problem? |
Beta Was this translation helpful? Give feedback.
-
I updated gitlab.nvim for the latest commit: ac2118c |
Beta Was this translation helpful? Give feedback.
Thank you for catching this. This error is what happens when the method (GET/POST/PUT) isn't correct.
My guess is that you have the latest Lua code, which sends a POST, but the Go binary hasn't been rebuilt, so the endpoint is still expecting a GET (this was changed recently). I need to adjust the build process so that the binary is force-rebuilt even when it already exists, when someone updates the plugin.
I've just pushed up those changes directly to the main branch. Can you update to the latest version of the plugin? It should automatically rebuild when you close and reopen Neovim, but if not, then run this:
Does that address the problem?