changed wording. (#6337)

This commit is contained in:
Tixxx 2021-01-13 15:12:04 -08:00 committed by GitHub
parent f7034b9bca
commit d367941cc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ MPIContext::~MPIContext() {
std::this_thread::sleep_for(std::chrono::seconds(MPIContext::MPI_TIMEOUT_IN_SECONDS));
if (!perform_graceful_exit) {
LOGS(logger_, INFO) << "MPI is not able to gracefully shut down. Aborting MPI.";
// Request to cancel the thread since it's hanging.
// Request to cancel the thread since it's not responsive.
pthread_t native_handle = release_func_executor_thread.native_handle();
pthread_cancel(native_handle);
}