Brett Randall

Results 159 comments of Brett Randall

My main use of devpi is for its `pip` pull-through caching capability - when I have to build fresh without a package-cache, I can do-so without re-downloading everything from _pypi.org_....

For the client/server storage piece, is this something that could be delegated to a filesystem that supports transparent compression? Or is that just passing the buck and would generate other...

I agree with an above comment by @stevenyoungs that this issue could do with decomposition for the roadmap. I am also cautious about implementing LFS-specific compression for both disk-storage and...

OK here's another essential tip if you find your `pass` repo constantly corrupted by incomplete `docker-pass-initialized-check`: ``` export GPG_TTY=$(tty) ``` ... so that `gpg` properly prompts for key passphrase, assuming...

It appears that `docker-credential-helpers` can easily reach a state where it has marked the pass path as initialised, and this can be hard to reset. I found the following to...

OK here's another essential tip if you find your `pass` repo constantly corrupted by incomplete `docker-pass-initialized-check`: ``` export GPG_TTY=$(tty) ``` ... so that `gpg` properly prompts for key passphrase, assuming...

@mcallaghan-bsm which platform/version are you running? ``` tee Dockerfile RUN apt-get update && apt-get install -y pass > EOF docker build -t pass . docker run -it --rm pass bash...

Proxying and proxy-switching with secure-websockets (`wss://`) protocol upgrades is working for me: - Version 85.0.4183.83 (Official Build) (64-bit) MacOS Catalina - SwitchyOmega Version 2.5.21 ... **with one big caveat**: I...

When pre/post request hooks were added, looks like they were added to `sync.py` and `async.py` and not the base worker code ... in 0d67447d198bea8521718ef4265128270d1f5476 (some refactoring since). Not sure whether...