diff --git a/Cargo.toml b/Cargo.toml index 568b3135..2190cd51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,9 @@ members = [ ] [patch.crates-io] -tokio-uds = { git = "https://github.com/sfackler/tokio" } -tokio-io = { git = "https://github.com/sfackler/tokio" } -tokio-timer = { git = "https://github.com/sfackler/tokio" } -tokio-codec = { git = "https://github.com/sfackler/tokio" } -tokio-reactor = { git = "https://github.com/sfackler/tokio" } -tokio-executor = { git = "https://github.com/sfackler/tokio" } +tokio-uds = { git = "https://github.com/tokio-rs/tokio" } +tokio-io = { git = "https://github.com/tokio-rs/tokio" } +tokio-timer = { git = "https://github.com/tokio-rs/tokio" } +tokio-codec = { git = "https://github.com/tokio-rs/tokio" } +tokio-reactor = { git = "https://github.com/tokio-rs/tokio" } +tokio-executor = { git = "https://github.com/tokio-rs/tokio" } diff --git a/tokio-postgres/src/proto/connection.rs b/tokio-postgres/src/proto/connection.rs index 9359b9b3..828f6087 100644 --- a/tokio-postgres/src/proto/connection.rs +++ b/tokio-postgres/src/proto/connection.rs @@ -133,7 +133,7 @@ impl Connection { Ok(AsyncSink::NotReady(message)) => { self.responses.push_front(sender); self.pending_response = Some(message); - trace!("poll_read: waiting on socket"); + trace!("poll_read: waiting on sender"); return Ok(None); } }