File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class JsonRpcEnvvarClient implements PromiseClient<typeof EnvironmentVari
75
75
return response ;
76
76
}
77
77
78
- throw new ConnectError ( "env variable not found" , Code . InvalidArgument ) ;
78
+ throw new ConnectError ( "env variable not found" , Code . NotFound ) ;
79
79
}
80
80
81
81
async createUserEnvironmentVariable (
@@ -177,7 +177,7 @@ export class JsonRpcEnvvarClient implements PromiseClient<typeof EnvironmentVari
177
177
return response ;
178
178
}
179
179
180
- throw new ConnectError ( "env variable not found" , Code . InvalidArgument ) ;
180
+ throw new ConnectError ( "env variable not found" , Code . NotFound ) ;
181
181
}
182
182
183
183
async createConfigurationEnvironmentVariable (
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export class EnvironmentVariableServiceAPI implements ServiceImpl<typeof Environ
84
84
return response ;
85
85
}
86
86
87
- throw new ConnectError ( "env variable not found" , Code . InvalidArgument ) ;
87
+ throw new ConnectError ( "env variable not found" , Code . NotFound ) ;
88
88
}
89
89
90
90
async createUserEnvironmentVariable (
You can’t perform that action at this time.
0 commit comments