-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
Move the transfers
computation into the AnnotationStorage
class
#16620
Move the transfers
computation into the AnnotationStorage
class
#16620
Conversation
e7362a0
to
196c71e
Compare
196c71e
to
afb57e3
Compare
afb57e3
to
defc71a
Compare
defc71a
to
982313d
Compare
982313d
to
9c5e297
Compare
Rather than having to *manually* determine the potential `transfers` at various spots in the API, we can let the `AnnotationStorage.serializable` getter include this. To further simplify things, we can also let the `serializable` getter compute and include the `hash`-string as well.
9c5e297
to
39113ba
Compare
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/158a30c44496009/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/e6d3b8c94bb90c9/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/158a30c44496009/output.txt Total script time: 25.63 mins
Image differences available at: http://54.241.84.105:8877/158a30c44496009/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/e6d3b8c94bb90c9/output.txt Total script time: 38.71 mins
Image differences available at: http://54.193.163.58:8877/e6d3b8c94bb90c9/reftest-analyzer.html#web=eq.log |
/botio integrationtest |
From: Bot.io (Linux m4)ReceivedCommand cmd_integrationtest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/dfabce375821608/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_integrationtest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/f51eb039ad182a0/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/dfabce375821608/output.txt Total script time: 4.32 mins
|
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/f51eb039ad182a0/output.txt Total script time: 16.90 mins
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you.
Rather than having to manually determine the potential
transfers
at various spots in the API, we can let theAnnotationStorage.serializable
getter include this.To further simplify things, we can also let the
serializable
getter compute and include thehash
-string as well.