From 3d4f3e96549e24a32e29a981d768ba3ad6d681c1 Mon Sep 17 00:00:00 2001 From: Victor Skvortsov Date: Mon, 17 Mar 2025 15:07:08 +0500 Subject: [PATCH] Drop RUN_NAME and REPO_ID env vars --- runner/internal/executor/executor.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/runner/internal/executor/executor.go b/runner/internal/executor/executor.go index 770c42d3c..36e0de306 100644 --- a/runner/internal/executor/executor.go +++ b/runner/internal/executor/executor.go @@ -235,8 +235,6 @@ func (ex *RunExecutor) execJob(ctx context.Context, jobLogFile io.Writer) error gpus_num := nodes_num * gpus_per_node_num jobEnvs := map[string]string{ - "RUN_NAME": ex.run.RunName, // deprecated, remove in 0.19 - "REPO_ID": ex.run.RepoId, // deprecated, remove in 0.19 "DSTACK_RUN_NAME": ex.run.RunName, "DSTACK_REPO_ID": ex.run.RepoId, "DSTACK_NODES_IPS": strings.Join(ex.clusterInfo.JobIPs, "\n"),