Skip to content

Commit d646501

Browse files
authored
fix(api/clients/v2): Add BlobStatus_GATHERING_SIGNATURES to retry loop (#1264)
1 parent c5851d6 commit d646501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/clients/v2/payload_disperser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func (pd *PayloadDisperser) pollBlobStatusUntilCertified(
249249
switch newStatus {
250250
case dispgrpc.BlobStatus_COMPLETE:
251251
return blobStatusReply, nil
252-
case dispgrpc.BlobStatus_QUEUED, dispgrpc.BlobStatus_ENCODED:
252+
case dispgrpc.BlobStatus_QUEUED, dispgrpc.BlobStatus_ENCODED, dispgrpc.BlobStatus_GATHERING_SIGNATURES:
253253
continue
254254
default:
255255
return nil, fmt.Errorf(

0 commit comments

Comments
 (0)