Brendon C.

Results 48 comments of Brendon C.
trafficstars

I ran into this today too. I want bufferBeforeError to be 0 so operations fail immediately when memcached becomes unavailable, but that also means the initial calls fail on application...

Just started using Passport and really struggled with this. Some mention in the docs would be good!

@dlangille - I've seen this too so I've started using `-k` to keep zero-sized snapshots. Otherwise this can be confusing.

> Now as a user, my only question would be: "what happens if I switch to using -u after I have been taking snapshots for a long time without it?"...

I ran into this too when using oAuth. A simpler workaround is to use a username and app password for the entire job then add "Git LFS pull after checkout"...

I hit this one today as well. Like @ljharb said, looks like you can use [ProvidePlugin](https://webpack.js.org/plugins/provide-plugin/) like this: ```javascript // webpack needs to be explicitly required const webpack = require('webpack')...

Well this is frustrating. I've been fighting this all week and it turns out it's not even implemented. After digging around it looks like this project and the Express adapter...

So it looks like [the implicit flow is no longer recommended](https://oauth.net/2/grant-types/implicit/): "the industry best practice has changed to recommend that public clients should use the authorization code flow with the...

We're seeing this too with LS 2.1.0 Docker. In fact I remember having this issue with 1.x so I just switched to reloading the playlists once per day. We have...

That does appear to work! I'm using Node.js 16 so I changed: `fs.rename(playlistTempPath, playlistFilePath, function (err) {` To: `fs.copyFile(playlistTempPath, playlistFilePath, function (err) {`