mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

Enable checking of the ray core module, excluding serve, workflows, and tune, in ./ci/lint/check_api_annotations.py. This required moving many files to ray._private and associated fixes.
7 lines
254 B
Python
7 lines
254 B
Python
import ray._private.ray_constants as ray_constants
|
|
|
|
REPORTER_PREFIX = "RAY_REPORTER:"
|
|
# The reporter will report its statistics this often (milliseconds).
|
|
REPORTER_UPDATE_INTERVAL_MS = ray_constants.env_integer(
|
|
"REPORTER_UPDATE_INTERVAL_MS", 2500
|
|
)
|