You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The protobuf has been updated to include a WorkerMetadata property within the WorkerInitResponse message. The worker should include WorkerMetadata when sending the WorkerInitResponse to the host.
You will need to pull in the latest protobuf version first (this doc may help).
messageWorkerMetadata {
// The runtime/stack namestringruntime_name=1;
// The version of the runtime/stackstringruntime_version=2;
// The version of the worker or worker SDKstringworker_version=3;
// The worker bitness/architecturestringworker_bitness=4;
// Optional additional custom propertiesmap<string, string> custom_properties=5;
}