Skip to content

Commit 9e86c4e

Browse files
authored
Fix wrong env var name in error message (#2686)
1 parent 2351c74 commit 9e86c4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/dstack/_internal/server/routers

src/dstack/_internal/server/routers/repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async def upload_code(
101101
raise ServerClientError(
102102
f"Repo diff size is {naturalsize(request_size)}, which exceeds the limit of "
103103
f"{naturalsize(SERVER_CODE_UPLOAD_LIMIT)}. Use .gitignore to exclude large files from the repo. This "
104-
f"limit can be modified by setting the DSTACK_SERVER_CODE_UPLOAD_LIMIT_BYTES environment variable"
104+
f"limit can be modified by setting the DSTACK_SERVER_CODE_UPLOAD_LIMIT environment variable"
105105
)
106106
_, project = user_project
107107
await repos.upload_code(

0 commit comments

Comments
 (0)