diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-15 11:04:23 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-15 11:04:23 -0700 |
commit | 9a303b182a32d2908caaaf5d24c7bc1ff3831505 (patch) | |
tree | 6867fc39395794127f30ecd375ec96a077160d32 /rust/src/api_server.rs | |
parent | 0319c8f531139c2b4c49570a499894d7200760f5 (diff) | |
download | fatcat-9a303b182a32d2908caaaf5d24c7bc1ff3831505.tar.gz fatcat-9a303b182a32d2908caaaf5d24c7bc1ff3831505.zip |
broken diesel+iron integration
Diffstat (limited to 'rust/src/api_server.rs')
-rw-r--r-- | rust/src/api_server.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index 59836e31..cac222e6 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -7,6 +7,11 @@ use futures::{self, Future}; use std::collections::HashMap; +use self::models::*; +use diesel; +use diesel::prelude::*; +use iron_diesel_middleware::DieselPooledConnection; + use swagger; use fatcat_api::models; @@ -28,11 +33,16 @@ impl Api for Server { context: &Context, ) -> Box<Future<Item = ContainerIdGetResponse, Error = ApiError> + Send> { let context = context.clone(); + let con: DieselPooledConnection<diesel::pg::PgConnection> = req.db_conn(); println!( "container_id_get(\"{}\") - X-Span-ID: {:?}", id, context.x_span_id.unwrap_or(String::from("<none>")).clone() ); + println!( + "container count: {}", + containers.count().load(&con).expect("DB Error"), + ); Box::new(futures::failed("Generic failure".into())) } |