-
Notifications
You must be signed in to change notification settings - Fork 46
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
fix(lily): Consider partially completed heights w ERRORs and SKIPs #791
Conversation
Codecov Report
@@ Coverage Diff @@
## master #791 +/- ##
========================================
+ Coverage 32.8% 33.0% +0.2%
========================================
Files 40 40
Lines 3704 3717 +13
========================================
+ Hits 1215 1228 +13
Misses 2353 2353
Partials 136 136 |
d55abb3
to
175f509
Compare
175f509
to
4259c74
Compare
chain/find.go
Outdated
on vpr.height = incomplete.height | ||
where (vpr.status_information != ?1 | ||
or vpr.status_information is null) | ||
and vpr.status = ?5 |
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.
fixes #773?
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.
Correct.
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.
I've added notes within the query to explain what's happening here.
chain/find.go
Outdated
visor.ProcessingStatusInformationNullRound, // arg 1 | ||
g.minHeight, // arg 2 | ||
g.maxHeight, // arg 3 | ||
visor.ProcessingStatusError, // arg 4 |
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.
Marks errors as gaps?
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.
I've added notes within the query to explain what's happening here.
c8caee5
to
c663469
Compare
c663469
to
399f5e8
Compare
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.
Good stuff, thanks for fixing these
fixes #773
fixes #775