mirror of
https://github.com/wassname/ray.git
synced 2026-07-22 13:00:49 +08:00
Compatibility issues (#6071)
* Pass -f - to tar to force stdin on Windows * Quote paths that may contain spaces (causes issues on Windows) * Copy over Windows code from Arrow for glog signal handle uninstall * Add missing COPTS to build rules since we'll need them for Windows compatibility * Begin adding COPTS for Windows compatibility * Disable glog on Arrow until we change WIN32 to _WIN32 there * Missing header files that cause problems on Windows * WORD typedef conflicts with Windows; remove it * uint -> unsigned int wherever we're dealing with milliseconds (signed version is already int) * uint -> unsigned int for enums * uint -> size_t, wherever we're dealing with sizes or indices into arrays * Work around Boost 1.68 bug in detecting clang-cl (revert this after upgrading) * Missing #include <unistd.h> * Add check for signal handler uninstallation failure * Linting issue
This commit is contained in:
@@ -37,7 +37,7 @@ struct ObjectManagerConfig {
|
||||
int object_manager_port;
|
||||
/// The time in milliseconds to wait before retrying a pull
|
||||
/// that fails due to client id lookup.
|
||||
uint pull_timeout_ms;
|
||||
unsigned int pull_timeout_ms;
|
||||
/// Object chunk size, in bytes
|
||||
uint64_t object_chunk_size;
|
||||
/// The store socket name.
|
||||
|
||||
Reference in New Issue
Block a user