Results 10 comments of Joseph Curtin

hey @pllim , yeah, I'm working through most errors now in `jbcurtin/spacetelescope`. The build log is a little miss leading right now, I'm working towards fixing that too

yeah, that is my understanding. I'm writing most of the infrastructure to handle multi-repo CI-Integration in `adrn/nbcollection` I came back to this repo to find the TOC issue and post...

@andyshinn , RE: https://github.com/gliderlabs/docker-alpine/issues/334#issuecomment-330096922 It was a DNS error for me. By setting `/etc/docker/daemon.json` with, ``` { "dns": ["8.8.8.8"] } ``` and then restarting docker with, ``` sudo service docker...

Oh cool! Glad to see this finally made it into Astropy. In case it helps, the core issue I ran into was I either couldn't calculate the offset correctly or...

Hold off on this, I've found a bug. I'll fix it later today.

Ok, fixed.

Answering the question about what Tidelift does with the data. The privacy policy available is one of the better ones I've seen * https://tidelift.com/about/privacy

Slightly off topic, but how are spans passed in Rocket? I thought `tracing` wasn't supported? I would think you'd pass a span using the State API, if anything? - https://rocket.rs/guide/v0.5/state/#state...

> ```rust > span!(Level::INFO, "my_span") > ``` hi @DhananjayPurohit , try ```rust let _my_span = tracing::info_span!("my_span").entered(); ``` or ```rust #[tracing::instrument("my_span", skip(db_pool)) #[post("/", data = "")] async fn handle_model(...) ``` @the10thWiz...

+1 for gRPC support. - Something that makes it easy to configure multiple keys per deployment would be an awesome feature. For example, a tenant might be a part of...