- 21 Jan, 2021 1 commit
-
-
Hannah Howard authored
* fix(allocator): don't let allocs dip below zero * refactor(allocator): move to top level move allocator to top level dir since it's used only in messagequeue now * fix(responsemanager): cleanup requests after network error * fix(messagequeue): release memory synchronously refactor messagequeue so that memory is released synchronously as soon as a message is sent or errors * refactor(allocator): respond to PR comments clarify intent via addressing comments on PR
-
- 19 Jan, 2021 1 commit
-
-
Alex Cruikshank authored
Co-authored-by: acruikshank <acruikshank@example.com>
-
- 23 Dec, 2020 1 commit
-
-
Alex Cruikshank authored
* WIP * WIP * network tests passing * fix peermanager test * requestmanager passes * responsemanager test passing * peerresponsebuilder test passing * network and messagequeue tests are passing * fix imports * refactor(responsemanager): test cleanup cleanup response manager test and continue cleaning up names * refactor(graphsync): add more code documentation * refactor(responsemanager): finish rename cleanup remove references to old peerresponsemanager, peerresponsesender * fix(messagequeue): don't miss queued messages move large blocks test to message queue where it belongs, make sure we properly handle queued messages * Apply suggestions from code review Co-authored-by: Alex Cruikshank <169613+acruikshank@users.noreply.github.com> * refactor(responseassembler): rename transaction builder rename transaction builder to response builder Co-authored-by: hannahhoward <hannah@hannahhoward.net> Co-authored-by: acruikshank <acruikshank@example.com>
-
- 22 Dec, 2020 2 commits
-
-
Hannah Howard authored
* add receiver error listener (code complete) * code complete, test passing, not sure if it works * fix(graphsync): fix receive err test * Update graphsync.go Co-authored-by: dirkmc <dirkmdev@gmail.com> * Update graphsync.go Co-authored-by: dirkmc <dirkmdev@gmail.com> * Update listeners/listeners.go Co-authored-by: dirkmc <dirkmdev@gmail.com> Co-authored-by: acruikshank <acruikshank@example.com> Co-authored-by: dirkmc <dirkmdev@gmail.com>
-
Alex Cruikshank authored
* try to run test plan on ci * remove broken parameters option * move workflow definition to bottom * put job definition in jobs group * remove undefined executor configuration * use go-test tools and restore parameterization * define executor explicitly * define executor through parameters * back to ci-go * remove extraneous steps * add prepare step * fix path to test definition * fix whitespace * add k8s test and use it in ci * trigger testplan only on merge to master Co-authored-by: acruikshank <acruikshank@example.com>
-
- 17 Dec, 2020 2 commits
-
-
Hannah Howard authored
fix various issues causing network errors not to propogate in many cases
-
Alex Cruikshank authored
* initial testplan with parameterizable composition * add disk based store option Co-authored-by: acruikshank <acruikshank@example.com>
-
- 11 Dec, 2020 3 commits
-
-
Hannah Howard authored
docs(CHANGELOG): update for v0.5.2
-
hannahhoward authored
also cleanup imports
-
dirkmc authored
* fix: RegisterNetworkErrorListener should fire when there's an error connecting to the peer * feat(listeners): move listeners to top level folder * feat(requestmanager): put network error in request manager Put network error in request manager to cover more cases * feat(requestmanager): correct for notification refactor Resolve discripencies with new and old notification interfaces Co-authored-by: hannahhoward <hannah@hannahhoward.net>
-
- 10 Dec, 2020 1 commit
-
-
Alex Cruikshank authored
* modify transformable event logic to simply add data * permit multiple data topics so sent hook gets calle for every block * rename test to match method rename. Co-authored-by: dirkmc <dirkmdev@gmail.com> Co-authored-by: acruikshank <acruikshank@example.com> Co-authored-by: dirkmc <dirkmdev@gmail.com>
-
- 25 Nov, 2020 2 commits
-
-
dirkmc authored
-
Hannah Howard authored
provide a configuration option to change the maximum number of requests processed at once by the responder
-
- 12 Nov, 2020 4 commits
-
-
Steven Allen authored
docs(CHANGELOG): update for 0.5.0
-
Steven Allen authored
-
Steven Allen authored
-
Steven Allen authored
-
- 11 Nov, 2020 4 commits
-
-
hannahhoward authored
-
hannahhoward authored
-
Hannah Howard authored
-
Hannah Howard authored
docs(CHANGELOG): update for 0.4.2
-
- 06 Nov, 2020 1 commit
-
-
Hannah Howard authored
reduce copies of temporary buffers in message write and unverified block store
-
- 29 Oct, 2020 3 commits
-
-
hannahhoward authored
-
Hannah Howard authored
add check if publisher is shutdown to Close method
-
Hannah Howard authored
docs(CHANGELOG): update for v0.4.1
-
- 27 Oct, 2020 6 commits
-
-
hannahhoward authored
-
hannahhoward authored
remove peer from peer status list when deallocing peer memory
-
hannahhoward authored
-
Hannah Howard authored
docs(CHANGELOG): update for 0.3.1
-
Hannah Howard authored
* feat(deps): update ipld-prime to master Update ipld-prime to master with serialization fixes * feat(deps): update to tagged go-ipld-prime-proto
-
Hannah Howard authored
* test(benchmarks): add large file tests add tests of large file processing to benchmarks * feat(allocator): add allocator for memory backpressure add an allocator that manages global memory allocations on responder and blocks peerresponsesenders as needed * feat(allocator): add method to release all peer memory * feat(allocator): refactor w/ mutex refactor allocator to remove go routine and address a few PR comments * Update responsemanager/allocator/allocator.go Co-authored-by: Steven Allen <steven@stebalien.com> * fix(impl): update constants in readable form Co-authored-by: Steven Allen <steven@stebalien.com>
-
- 26 Oct, 2020 1 commit
-
-
Hannah Howard authored
* test(benchmarks): add benchmark for go routine leak * fix(notifications): shutdown notification queues make sure all notification publishers are actually shut down, and don't start them automatically
-
- 20 Oct, 2020 1 commit
-
-
hannahhoward authored
-
- 16 Oct, 2020 1 commit
-
-
Hannah Howard authored
* feat(message): switch to google protobuf after tracking down an error in Unmarshal code generate by gogoprotobuf, and verifying this is a bug in the library, which appears unmaintained, try switching to google's own golang protobuf tools * fix(message): upgrade msgio resolve bad message strings * feat(message): initialize empty extensions Initialize extensions to map if nil
-
- 14 Oct, 2020 3 commits
-
-
Hannah Howard authored
feat(CHANGELOG): update for 0.3.0
-
hannahhoward authored
update for 0.3.0 + style fixes
-
Hannah Howard authored
docs(CHANGELOG): update for 0.2.1
-
- 13 Oct, 2020 1 commit
-
-
Hannah Howard authored
* feat(notifications): build notifications architecture build an architecture via which we can pass on notifications * feat(peerresponsesender): add notifications pass notifications on from peer response sender based on message queue notifications * feat(responsemanager): handle network errors Pass on network errors through the response manager, pass block sent errors as well * fix(notifications): send unique notifications by peer * feat(responsemanager): subscriber per request * Revert "fix(notifications): send unique notifications by peer" This reverts commit 7bf368a05d14229b7523cb25068681d9c7e48246.
-
- 12 Oct, 2020 1 commit
-
-
Hannah Howard authored
-
- 24 Sep, 2020 1 commit
-
-
hannahhoward authored
-