Skip to content

Commit

Permalink
Merge pull request #1199 from daboross/patch-1
Browse files Browse the repository at this point in the history
fix(client): remove config requirement for Connect
  • Loading branch information
seanmonstar committed Jun 3, 2017
2 parents 9036df2 + 5391d02 commit 76fc633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ impl<C, B> Config<C, B> {

/// Set the `Connect` type to be used.
#[inline]
pub fn connector<CC: Connect>(self, val: CC) -> Config<CC, B> {
pub fn connector<CC>(self, val: CC) -> Config<CC, B> {
Config {
_body_type: self._body_type,
//connect_timeout: self.connect_timeout,
Expand Down

0 comments on commit 76fc633

Please sign in to comment.