Skip to content

Commit

Permalink
Merge pull request #218 from ipfs/release/v0.9.3
Browse files Browse the repository at this point in the history
Release/v0.9.3
  • Loading branch information
hannahhoward committed Sep 21, 2021
2 parents add2b93 + c203ac1 commit 48cf3df
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# go-graphsync changelog

# go-graphsync 0.9.3

Hotfix for 0.9.2

### Changelog

- github.com/ipfs/go-graphsync:
- fix(impl): use correct allocator

### Contributors

| Contributor | Commits | Lines ± | Files Changed |
|-------------|---------|---------|---------------|
| hannahhoward | 1 | +1/-1 | 1 |

# go-graphsync 0.9.2

DO NOT USE: Contains bug

Minor bug fix and thread unblock

### Changelog
Expand Down
2 changes: 1 addition & 1 deletion impl/graphsync.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ func (gsr *graphSyncReceiver) ReceiveMessage(
totalMemoryAllocated += uint64(len(blk.RawData()))
}
select {
case <-gsr.graphSync().responseAllocator.AllocateBlockMemory(sender, totalMemoryAllocated):
case <-gsr.graphSync().requestAllocator.AllocateBlockMemory(sender, totalMemoryAllocated):
case <-gsr.ctx.Done():
}
gsr.graphSync().requestManager.ProcessResponses(sender, incoming.Responses(), incoming.Blocks())
Expand Down

0 comments on commit 48cf3df

Please sign in to comment.