mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[tune] configurable maximum length of trial identifier (#5287)
This commit is contained in:
parent
6f737e6a50
commit
d9e81da3b8
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ from ray.tune.result import (DEFAULT_RESULTS_DIR, DONE, HOSTNAME, PID,
|
|||
from ray.utils import binary_to_hex, hex_to_binary
|
||||
|
||||
DEBUG_PRINT_INTERVAL = 5
|
||||
MAX_LEN_IDENTIFIER = 130
|
||||
MAX_LEN_IDENTIFIER = int(os.environ.get("MAX_LEN_IDENTIFIER", 130))
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue