mirror of
https://github.com/coder/code-server.git
synced 2026-03-30 00:02:16 +08:00
This is done by returning the entire error stringified instead of just the message. This fixes the issue with the "save as" dialog.
29 lines
478 B
Protocol Buffer
29 lines
478 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message NewEvalMessage {
|
|
uint64 id = 1;
|
|
string function = 2;
|
|
repeated string args = 3;
|
|
// Timeout in ms
|
|
uint32 timeout = 4;
|
|
// Create active eval message.
|
|
// Allows for dynamic communication for an eval
|
|
bool active = 5;
|
|
}
|
|
|
|
message EvalEventMessage {
|
|
uint64 id = 1;
|
|
string event = 2;
|
|
repeated string args = 3;
|
|
}
|
|
|
|
message EvalFailedMessage {
|
|
uint64 id = 1;
|
|
string response = 2;
|
|
}
|
|
|
|
message EvalDoneMessage {
|
|
uint64 id = 1;
|
|
string response = 2;
|
|
}
|