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
Two regressions surfaced by csi-sanity:
1. APICallRc.RetCode was uint64. golinstor decodes it as int64;
our 0xC000_0000_0000_0000 (= 13835058055282163712 unsigned) didn't
fit. Switch to int64 with the negative two's-complement wire shape
that upstream Java actually emits.
2. golinstor's snapshot-list path probes /v1/remotes/s3 first; a 404
surfaced as 'failed to list available s3 remotes'. Add
/v1/remotes(/s3|/linstor|/ebs) returning [] — cozystack doesn't
do cross-cluster shipping, but we owe the empty-list shape so
golinstor stops choking.
server.Start refactored into Start + buildMux to stay under funlen.
Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
0 commit comments