Update flow/IThreadPoolTest.actor.cpp

Co-authored-by: A.J. Beamon <aj.beamon@snowflake.com>
This commit is contained in:
Daniel Smith 2021-06-29 16:37:06 -04:00 committed by GitHub
parent f58c7fd8bc
commit ac01e5bcfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ struct ThreadNameReceiver : IThreadPoolReceiver {
char name[arrayLen];
int err = pthread_getname_np(t, name, arrayLen);
if (err != 0) {
std::cout << "Get name filed with error code: " << err << std::endl;
std::cout << "Get name failed with error code: " << err << std::endl;
a.name.sendError(unknown_error());
return;
}