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
/// ID of the image used to initialize this Instance.
pubimage_id:Uuid,
/// ID of the bootrom used to initialize this Instance.
pubbootrom_id:Uuid,
/// Size of memory allocated to the Instance, in MiB.
pubmemory:u64,
/// Number of vCPUs to be allocated to the Instance.
pubvcpus:u8,
}
The image_id and bootrom_id fields in this struct are, AFAICT, totally unused by anyone. The description field is also not used by the control plane (it passes "Test description" in all cases). We should remove these fields if possible to reduce the time spent initializing them and sending them around.
The text was updated successfully, but these errors were encountered:
pfmooney
added a commit
to pfmooney/propolis
that referenced
this issue
Oct 6, 2023
When tungstenite was updated to 0.20.x, the structure of the buffering
parameters exposed by its websocket configuration changed significantly.
The parameters chosen can cause `WriteBufferFull` errors if enough
output accumulates in the history buffer to be sent in a message which
exceeds the unnecessarily small `max_write_buffer_size`.
Using the configuration defaults, which feature an unbounded
`max_write_buffer_size`, should provide acceptable behavior.
Fixesoxidecomputer#530
propolis/lib/propolis-client/src/handmade/api.rs
Lines 172 to 189 in 6d815bb
The
image_id
andbootrom_id
fields in this struct are, AFAICT, totally unused by anyone. Thedescription
field is also not used by the control plane (it passes "Test description" in all cases). We should remove these fields if possible to reduce the time spent initializing them and sending them around.The text was updated successfully, but these errors were encountered: