Skip to content

Commit

Permalink
Merge pull request #185 from sakridge/fix_default_client_port
Browse files Browse the repository at this point in the history
Fix default client port, server uses 8000-8002 for gossip
  • Loading branch information
garious authored May 8, 2018
2 parents 5ad6061 + 4870def commit 61425ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/client-demo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn print_usage(program: &str, opts: Options) {
fn main() {
let mut threads = 4usize;
let mut addr: String = "127.0.0.1:8000".to_string();
let mut client_addr: String = "127.0.0.1:8001".to_string();
let mut client_addr: String = "127.0.0.1:8010".to_string();

let mut opts = Options::new();
opts.optopt("s", "", "server address", "host:port");
Expand Down

0 comments on commit 61425ea

Please sign in to comment.