Caige Nichols

Results 20 comments of Caige Nichols

I did something like this to support OAuth 1.0a with Twitter: ```javascript import { TwitterAuthProvider } from "sk-auth/providers"; import { TwitterApi } from 'twitter-api-v2'; const twitterProfileHandler = ({ id, id_str,...

@dakom I think you make convincing arguments 👏 and it feels similar to Axum's `Response` trait and `impl Response` pattern. I'm not sure what other worker related concerns there might...

For those looking for a quick demo of this with a fully local CA and cert: https://github.com/caiges/helm-oci-registry. I ran into this issue when setting up this demo and worked up...

I'm getting this on Arch running in compose as well. Tried running the worker with strace but I didn't see anything that stood out.

Switching my Docker storage driver to `vfs` allows me to work around this issue but I don't think that's a solution. I haven't fully taken a dive into what's actually...

@barrucadu setting: ``` CONCOURSE_WORK_DIR=/worker-state CONCOURSE_WORKER_WORK_DIR=/worker-state ``` and adding a volume for the `/worker-state` directory in my worker's service configuration was necessary for baggageclaim to create volumes.

I did a cursory search and couldn't find that `CONCOURSE_WORKER_WORK_DIR` is referenced anywhere. `CONCOURSE_WORK_DIR` does appear to be used. I don't use ZFS but you could configure docker to use...

@GeeWee Do you have your tests in a different Cargo project with either the default host target or some other NON wasm32-wasi target? It looks like viceroy depends on hyper...