Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Access] ws controller error handling #6798

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2c17c96
change error handling in reader and writer routines
illia-malachyn Dec 4, 2024
48c8e4e
Merge branch 'illia-malachyn/6635-tests-for-websocket-controller' int…
illia-malachyn Dec 4, 2024
665cdb0
Handle different data flows in controller
illia-malachyn Dec 11, 2024
b62f8db
cover all actions with tests
illia-malachyn Dec 11, 2024
4c573c1
fix tests shutdown
illia-malachyn Dec 12, 2024
8e6fe46
Merge branch 'master' into illia-malachyn/6642-ws-controller-error-ha…
illia-malachyn Dec 12, 2024
78ca825
remove old mockery cmds
illia-malachyn Dec 12, 2024
09bf64d
refactor places where we return error
illia-malachyn Dec 12, 2024
849b5a8
remove comments
illia-malachyn Dec 13, 2024
eed3b63
Merge branch 'master' into illia-malachyn/6642-ws-controller-error-ha…
illia-malachyn Dec 13, 2024
b8850f8
Merge branch 'UlyanaAndrukhiv/6639-ws-ping-pong' into illia-malachyn/…
illia-malachyn Dec 13, 2024
2920042
remove log msg
illia-malachyn Dec 13, 2024
e9795fb
remove unnecessary func
illia-malachyn Dec 13, 2024
c00a12c
fix parallel running and turn it on
illia-malachyn Dec 13, 2024
b41f176
use once instead of maybe where needed
illia-malachyn Dec 13, 2024
ee1cf77
refactor msg
illia-malachyn Dec 13, 2024
7049e0c
Merge branch 'master' into illia-malachyn/6642-ws-controller-error-ha…
illia-malachyn Dec 13, 2024
502c74f
add assert expectations for mocks in tests
illia-malachyn Dec 13, 2024
6c71168
shuffle code
illia-malachyn Dec 13, 2024
ac529ad
move stream draining to write routine to not run into deadlock. fix p…
illia-malachyn Dec 15, 2024
911e6cd
Updated return statements to latest changes
UlyanaAndrukhiv Dec 16, 2024
1c008f7
Merge branch 'master' of github.com:The-K-R-O-K/flow-go into illia-ma…
Guitarheroua Dec 19, 2024
2dd1ed2
fix comments
illia-malachyn Dec 19, 2024
f56fa5a
fix comments
illia-malachyn Dec 19, 2024
02ad488
change error messsages
illia-malachyn Dec 19, 2024
72de9e5
change request-response models
illia-malachyn Dec 19, 2024
a6f604a
Merge branch 'master' into illia-malachyn/6642-ws-controller-error-ha…
illia-malachyn Dec 23, 2024
780b0c2
remove old comments
illia-malachyn Dec 27, 2024
2c808a2
Add godoc for controller and websockets package
illia-malachyn Dec 27, 2024
7503ca5
Merge branch 'master' into illia-malachyn/6642-ws-controller-error-ha…
illia-malachyn Dec 27, 2024
963a6e7
Remove unused values from config
illia-malachyn Dec 27, 2024
51a567f
add comment about multiplexed stream lifecycly
illia-malachyn Dec 27, 2024
af09389
improve package godoc
illia-malachyn Dec 27, 2024
52210b9
add more explanation on how multiplexed stream is closed
illia-malachyn Dec 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ generate-mocks: install-mock-generators
mockery --name 'Storage' --dir=module/executiondatasync/tracker --case=underscore --output="module/executiondatasync/tracker/mock" --outpkg="mocktracker"
mockery --name 'ScriptExecutor' --dir=module/execution --case=underscore --output="module/execution/mock" --outpkg="mock"
mockery --name 'StorageSnapshot' --dir=fvm/storage/snapshot --case=underscore --output="fvm/storage/snapshot/mock" --outpkg="mock"
mockery --name 'WebsocketConnection' --dir=engine/access/rest/websockets --case=underscore --output="engine/access/rest/websockets/mock" --outpkg="mock"

#temporarily make insecure/ a non-module to allow mockery to create mocks
mv insecure/go.mod insecure/go2.mod
Expand Down
Loading
Loading