This is an automated email from the ASF dual-hosted git repository.
hello-stephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new ed823b6d8eb [test](docker) improve the prefix path of cloud mode
docker env (#65001)
ed823b6d8eb is described below
commit ed823b6d8eb13ce8885d512c02c3d65685388e33
Author: chunping <[email protected]>
AuthorDate: Wed Jul 1 15:46:36 2026 +0800
[test](docker) improve the prefix path of cloud mode docker env (#65001)
---
docker/runtime/doris-compose/cluster.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docker/runtime/doris-compose/cluster.py
b/docker/runtime/doris-compose/cluster.py
index 55ca5664175..769a1af4be0 100644
--- a/docker/runtime/doris-compose/cluster.py
+++ b/docker/runtime/doris-compose/cluster.py
@@ -862,6 +862,9 @@ class MS(CLOUD):
time.strftime("%Y%m%d_%H%M%S"),
uuid.uuid4().hex[:8],
)
+ base_prefix = envs.get('DORIS_CLOUD_PREFIX', '').strip().strip('/')
+ if base_prefix:
+ prefix = '{}/{}'.format(base_prefix, prefix)
envs['DORIS_CLOUD_PREFIX'] = prefix
LOG.info(f"Set DORIS_CLOUD_PREFIX to {prefix}")
return envs
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]