Skip to content
This repository has been archived by the owner on Nov 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #704 from afck/master
Browse files Browse the repository at this point in the history
Version change to 0.14.0
  • Loading branch information
Viv Rajkumar committed May 24, 2016
2 parents b895fee + bd4f39d commit 836de74
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CRUST - Change Log

## [0.14.0]
- Depend on maidsafe_utilities 0.6.0.
- Fix endianness issue.

## [0.13.2]
- Tweak the algorithm for dropping messages when the bandwitdh is insufficient.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "crust"
readme = "README.md"
repository = "https://github.com/maidsafe/crust"
version = "0.13.2"
version = "0.14.0"

[dependencies]
bincode = "~0.5.6"
Expand Down
5 changes: 4 additions & 1 deletion src/service.rs
Expand Up @@ -439,7 +439,10 @@ impl Service {
Err(mpsc::RecvError) => {
// All of the senders have hung up without sending us an Ok(()). They all
// must have failed to connect.
let err = io::Error::new(io::ErrorKind::TimedOut, "");
trace!("Failed to establish connection to {:?}: {:?}",
their_id,
errors);
let err = io::Error::new(io::ErrorKind::TimedOut, "Failed to connect");
let _ = event_tx.send(Event::NewPeer(Err(err), their_id));
return;
}
Expand Down

0 comments on commit 836de74

Please sign in to comment.