mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-12-23 09:18:55 +00:00
Improve warning for terminated threads
with non-zero return code.
This commit is contained in:
parent
7a488b93d0
commit
1e0e2752bf
@ -133,7 +133,7 @@ int S3fsMultiCurl::MultiPerform()
|
|||||||
} else {
|
} else {
|
||||||
int int_retval = (int)(intptr_t)(retval);
|
int int_retval = (int)(intptr_t)(retval);
|
||||||
if (int_retval && !(int_retval == -ENOENT && isMultiHead)) {
|
if (int_retval && !(int_retval == -ENOENT && isMultiHead)) {
|
||||||
S3FS_PRN_WARN("thread failed - rc(%d)", int_retval);
|
S3FS_PRN_WARN("thread terminated with non-zero return code: %d", int_retval);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -169,7 +169,7 @@ int S3fsMultiCurl::MultiPerform()
|
|||||||
} else {
|
} else {
|
||||||
int int_retval = (int)(intptr_t)(retval);
|
int int_retval = (int)(intptr_t)(retval);
|
||||||
if (int_retval && !(int_retval == -ENOENT && isMultiHead)) {
|
if (int_retval && !(int_retval == -ENOENT && isMultiHead)) {
|
||||||
S3FS_PRN_WARN("thread failed - rc(%d)", int_retval);
|
S3FS_PRN_WARN("thread terminated with non-zero return code: %d", int_retval);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user