Alexandre Seo
Alexandre Seo
+1 to lovesegfault, I found this crate will looking for a way to handle Retry-After easily
The actix examples still use the jeager exporter, so there are no example showing how to use the recommended otlp exporters with actix or hyper.
Hi @billy1624, thanks for your interest. The issue is that my external interface accepts `Value`s (not `Expr::Value`) for all kinds of various filters, and converting it back to a string...
This would also allow writing this: ```Rust Expr::expr(Func::lower([expr])).like(Func::lower.args([other_expr])) ```
I'm also hitting this issue. Is there a way to specify the oid manually ? We can always get it dynamically beforehand with `SELECT 'my_type'::regclass::oid;` I'm using a custom composite...
@weiznich I'm sorry if I hurt your feelings, I didn't mean to. I was thinking about doing this: ```Rust let type_id: TypeId = diesel::sql_query( r#"SELECT "pg_type"."oid" AS oid, "pg_type"."typarray" AS...
Thanks, will do. Is there a way to set the external port to some manual value so that entries are not duplicated but UPnP ? What is the performance cost...
After digging around, I found that you can write that: ```Rust #[derive(Deserialize)] struct Helper ( #[serde(with = "tuple_vec_map")] Vec ); fn map_frequency(v: serde_json::Value) -> Result { let vec: Helper =...