Skip to content

Commit

Permalink
Support port fix
Browse files Browse the repository at this point in the history
  • Loading branch information
faromero committed Sep 10, 2021
1 parent 8460b95 commit 0c79d13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/execution/engine_vhive.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ VHiveExecutionEngine::VHiveExecutionEngine( const size_t max_jobs, const string
uint16_t port = parsed_url_.port.get();

if ( port ) {
final_url_ = parsed_url_.host + ":" + to_string( port );
address_ = Address( parsed_url_.host, port );
string port_string = to_string( port );
final_url_ = parsed_url_.host + ":" + port_string;
address_ = Address( parsed_url_.host, port_string );
}
}

Expand Down

0 comments on commit 0c79d13

Please sign in to comment.