Skip to content

Commit

Permalink
chore: pre-release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
istae committed May 15, 2024
1 parent 92de285 commit 685024f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion openapi/SwarmCommon.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
version: 3.2.7
version: 3.2.8
title: Common Data Types
description: |
\*****bzzz*****
Expand Down
2 changes: 1 addition & 1 deletion openapi/SwarmDebug.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
version: 4.1.1
version: 4.1.2
title: Bee Debug API
description: "A list of the currently provided debug interfaces to interact with the bee node"

Expand Down
4 changes: 2 additions & 2 deletions pkg/retrieval/retrieval.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (s *Service) RetrieveChunk(ctx context.Context, chunkAddr, sourcePeerAddr s
go func() {
span, _, ctx := s.tracer.FollowSpanFromContext(spanCtx, "retrieve-chunk", s.logger, opentracing.Tag{Key: "address", Value: chunkAddr.String()})
defer span.Finish()
s.retrieveChunk(ctx, quit, chunkAddr, peer, resultC, action, origin, span)
s.retrieveChunk(ctx, quit, chunkAddr, peer, resultC, action, span)
}()

case res := <-resultC:
Expand Down Expand Up @@ -297,7 +297,7 @@ func (s *Service) RetrieveChunk(ctx context.Context, chunkAddr, sourcePeerAddr s
return v, nil
}

func (s *Service) retrieveChunk(ctx context.Context, quit chan struct{}, chunkAddr, peer swarm.Address, result chan retrievalResult, action accounting.Action, isOrigin bool, span opentracing.Span) {
func (s *Service) retrieveChunk(ctx context.Context, quit chan struct{}, chunkAddr, peer swarm.Address, result chan retrievalResult, action accounting.Action, span opentracing.Span) {

var (
startTime = time.Now()
Expand Down

0 comments on commit 685024f

Please sign in to comment.