Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
860981d8
Unverified
Commit
860981d8
authored
Feb 07, 2026
by
Jiang Wu
Committed by
GitHub
Feb 07, 2026
Browse files
Make directory exist ok for ray spinning up multiple replicas on a single instance (#33604)
Signed-off-by:
Jiang Wu
<
jwu@cclgroup.com
>
parent
52181baa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
vllm/transformers_utils/runai_utils.py
vllm/transformers_utils/runai_utils.py
+1
-3
No files found.
vllm/transformers_utils/runai_utils.py
View file @
860981d8
...
...
@@ -64,9 +64,7 @@ class ObjectStorageModel:
"model_streamer"
,
hashlib
.
sha256
(
str
(
url
).
encode
()).
hexdigest
()[:
8
],
)
if
os
.
path
.
exists
(
dir_name
):
shutil
.
rmtree
(
dir_name
)
os
.
makedirs
(
dir_name
)
os
.
makedirs
(
dir_name
,
exist_ok
=
True
)
self
.
dir
=
dir_name
logger
.
debug
(
"Init object storage, model cache path is: %s"
,
dir_name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment