-
Notifications
You must be signed in to change notification settings - Fork 674
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
NOISSUE - Fix run script and compiler warnings #1336
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1336 +/- ##
==========================================
- Coverage 59.92% 59.91% -0.01%
==========================================
Files 113 113
Lines 8860 8858 -2
==========================================
- Hits 5309 5307 -2
- Misses 3085 3086 +1
+ Partials 466 465 -1
Continue to review full report at Codecov.
|
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.
This PR includes notify service as well, I guess it needs to be merged after
4ed47ff
to
2d24a3a
Compare
Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
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
@@ -82,9 +82,6 @@ func (repo mongoRepository) ReadAll(chanID string, offset, limit uint64, query m | |||
if err != nil { | |||
return readers.MessagesPage{}, errors.Wrap(errReadMessages, err) | |||
} | |||
if total < 0 { |
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.
It's not addressed in PR, not sure if it's accidentally removed?
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.
It's removed because total
is uint
type, so this can never be true (in fact, that's why we use uint
instead of int
).
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
* Fix NATS server naming in run script Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Fix warnings Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> * Fix typo Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
Signed-off-by: dusanb94 dusan.borovcanin@mainflux.com
What does this do
This pull request addresses:
int64
tostring
in Twins service.Which issue(s) does this PR fix/relate to?
There is no such issue.
List any changes that modify/break current functionality
There are no breaking changes.
Have you included tests for your changes?
No, because no new features are added.
Did you document any new/modified functionality?
No, there is no cush functionality.