Updated client error message for too many status requests

Co-Authored-By: tclinken <trevorclinkenbeard@gmail.com>
This commit is contained in:
A.J. Beamon 2019-01-28 17:49:49 -08:00 committed by GitHub
parent 5b89db811a
commit 6f01f83cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ ACTOR Future<Optional<StatusObject>> clusterStatusFetcher(ClusterInterface cI, S
("Unable to communicate with the cluster controller at " + cI.address().toString() + " to get status.").c_str()));
else if (result.getError().code() == error_code_server_overloaded)
messages->push_back(makeMessage("server_overloaded",
"The cluster controller is currently processing too many status requests, and is unable to respond"));
"The cluster controller is currently processing too many status requests and is unable to respond"));
else
messages->push_back(makeMessage("status_incomplete_error", "Cluster encountered an error fetching status."));
}