Ayrton Sparling
Ayrton Sparling
I'm using node's http2 framework with the `allowHTTP1: true` option. Then setting a `ws` server to listen on the http2 server just works. Although I would like to see `ws`...
@josephg I believe the connection comes in as an HTTP1.1 request. There is no actual HTTP2 as far as I'm aware.
I'm experiencing this too. Using verdaccio 5.16.0 behind a traefik proxy, both on docker. Client logs are the same as the original posters. Server logs are below: ```js http ---...
Tracked it down to an error in `node_modules/verdaccio/build/api/endpoint/api/publish.js` so far. Error is triggered by the call to ```js createTarball(_path.default.basename(firstAttachmentKey), _attachments[firstAttachmentKey], function (error) { ``` Error: ```js NotFoundError: no such package...
Seems to be coming from `node_modules/verdaccio/build/lib/local-storage.js` ```js storage.readPackage(name, (err, result) => { if (err) { if (err.code === _constants.STORAGE.NO_SUCH_FILE_ERROR || err.code === _constants.HTTP_STATUS.NOT_FOUND) { return callback(_utils.ErrorCode.getNotFound()); ``` and/or `node_modules/verdaccio/build/lib/storage.js`: ```js...
Lol, I pressed ctrl+enter to add a line above and it submitted it. Sorry, thank you!
Brb, gotta change some passwords lol.
Lesson learned, don't clean configs in the browser. ``` pnpm --version 6.15.1 ``` ``` $ pnpm publish --no-git-checks 0 verbose cli [ 0 verbose cli '/home/ayrton/.nvm/versions/node/v16.7.0/bin/node', 0 verbose cli '/home/ayrton/.nvm/versions/node/v16.7.0/bin/npm',...
Here is the test repo. Error occurs for me when using it. https://github.com/FallingSnow/Verdaccio-2096
Found the issue. The storage directory needs to have the proper permissions. Then ran into an issue with Internal Server Error while trying to sign in. Turns out it was...