o3fs and ofs uses the same transport implementation, so they should share the same thread pool.
| 131 | // o3fs and ofs uses the same transport implementation, so they should share |
| 132 | // the same thread pool. |
| 133 | bool IsCosPath(const char* path, bool check_default_fs) { |
| 134 | return IsSpecificPath(path, FILESYS_PREFIX_COS, check_default_fs); |
| 135 | } |
| 136 | |
| 137 | bool IsOzonePath(const char* path, bool check_default_fs) { |
| 138 | return IsSpecificPath(path, FILESYS_PREFIX_OZONE, check_default_fs) |
no test coverage detected