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
Fix scheduling metadata being nil on sandbox create
When GetTemplate is called for a new sandbox, headers were pre-filled
with nil using resolvedHeader(nil), which immediately marked the SetOnce
as 'done'. When Fetch loaded actual headers from storage, they couldn't
update the SetOnce because it was already set. This caused
SchedulingMetadata() to return nil on create.
Changed GetTemplate to pass unresolved SetOnce instances and modified
Fetch to load headers from storage when they are unset.
0 commit comments