File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ message StreamingMessage {
65
65
66
66
// Worker logs a message back to the host
67
67
RpcLog rpc_log = 2 ;
68
+
69
+ FunctionEnvironmentReLoadRequest function_environment_reload_request = 25 ;
70
+
71
+ FunctionEnvironmentReLoadResponse function_environment_reload_response = 26 ;
68
72
}
69
73
}
70
74
@@ -180,6 +184,16 @@ message WorkerStatusRequest{
180
184
message WorkerStatusResponse {
181
185
}
182
186
187
+ message FunctionEnvironmentReLoadRequest {
188
+ // Environment variables from the current process
189
+ map <string , string > environment_variables = 1 ;
190
+ }
191
+
192
+ message FunctionEnvironmentReLoadResponse {
193
+ // Status of the response
194
+ StatusResult result = 3 ;
195
+ }
196
+
183
197
// Host tells the worker to load a Function
184
198
message FunctionLoadRequest {
185
199
// unique function identifier (avoid name collisions, facilitate reload case)
You can’t perform that action at this time.
0 commit comments