We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41a76d commit 72ad89cCopy full SHA for 72ad89c
components/gitpod-protocol/src/protocol.ts
@@ -251,8 +251,8 @@ export namespace UserEnvVar {
251
if (variable.value.trim() === "") {
252
return "Value must not be empty.";
253
}
254
- if (variable.value.length > 32768) {
255
- return 'Value too long. Maximum value length is 32768 characters.';
+ if (variable.value.length > 32767) {
+ return 'Value too long. Maximum value length is 32767 characters.';
256
257
if (pattern.trim() === "") {
258
return "Scope must not be empty.";
0 commit comments