Skip to content

Commit

Permalink
Fix build after 8a3aeb3
Browse files Browse the repository at this point in the history
The above-mentioned patch ended up conflicting with
24cd114 at commit time. We didn't see it in
precommit because the conflicting patch was committed after the precommit tests
had run.

Change-Id: I6a137b21d187b289f1afeab98b319a46425ab05a
Reviewed-on: http://gerrit.sjc.cloudera.com:8080/6843
Reviewed-by: Todd Lipcon <[email protected]>
Tested-by: Todd Lipcon <[email protected]>
  • Loading branch information
toddlipcon committed Jun 3, 2015
1 parent 8a3aeb3 commit da8e042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kudu/master/master-path-handlers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void MasterPathHandlers::HandleTablePage(const Webserver::WebRequest& req,
string master_addresses;
if (master_->opts().IsDistributed()) {
vector<string> all_addresses;
BOOST_FOREACH(const HostPort& hp, master_->opts().master_quorum) {
BOOST_FOREACH(const HostPort& hp, master_->opts().master_addresses) {
master_addresses.append(hp.ToString());
}
master_addresses = JoinElements(all_addresses, ",");
Expand Down

0 comments on commit da8e042

Please sign in to comment.