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

livepeer_cli: Fix the "ERROR: logging before flag.Parse" warning when any option is selected #2445

Closed

Conversation

emranemran
Copy link
Contributor

As part of commit 78789b1 (Issue #928), the call to flag.Parse() was commented out perhaps unintentionally. This call is required prior to using glog calls as noted here:
https://github.com/golang/glog/blob/master/glog.go#L40

What does this pull request do? Explain your changes. (required)

  • (see above commit desc)

Specific updates (required)

  • (see above commit desc)

How did you test each of these updates (required)

  • Tested locally by invoking livepeer_cli and verifying the erroneous warning is suppressed.

Does this pull request close any open issues?
Fix #2186

Checklist:

@emranemran emranemran force-pushed the user/emahbub/fix-glog-warning-in-livepeer-cli branch from 9c9e3cd to 2c0b72a Compare June 3, 2022 21:02
@emranemran emranemran requested review from leszko and thomshutt June 3, 2022 21:14
@emranemran emranemran self-assigned this Jun 4, 2022
@emranemran emranemran force-pushed the user/emahbub/fix-glog-warning-in-livepeer-cli branch from 2c0b72a to 9acf875 Compare June 4, 2022 00:39
@codecov
Copy link

codecov bot commented Jun 4, 2022

Codecov Report

Merging #2445 (d9f4af8) into master (d360781) will not change coverage.
The diff coverage is 0.00000%.

Impacted file tree graph

@@              Coverage Diff              @@
##              master       #2445   +/-   ##
=============================================
  Coverage   55.02775%   55.02775%           
=============================================
  Files             94          94           
  Lines          19641       19641           
=============================================
  Hits           10808       10808           
  Misses          8236        8236           
  Partials         597         597           
Impacted Files Coverage Δ
cmd/livepeer_cli/livepeer_cli.go 0.00000% <0.00000%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d360781...d9f4af8. Read the comment docs.

any option is selected

As part of commit 78789b1 (Issue #928), the call to flag.Parse() was
commented out perhaps unintentionally. This call is required prior to
using glog calls as noted here:
https://github.com/golang/glog/blob/master/glog.go#L40
@emranemran emranemran force-pushed the user/emahbub/fix-glog-warning-in-livepeer-cli branch from 9acf875 to d9f4af8 Compare June 4, 2022 04:05
Copy link
Contributor

@leszko leszko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that the flags stop to work after you change. Please check. If that's the case, then I suggest removing this // flag.Parse() and just not use anything flag-raleted before calling app.Run(os.Args).

@@ -58,7 +59,7 @@ func main() {
return nil
}
app.Version = core.LivepeerVersion
// flag.Parse()
flag.Parse()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that we cannot parse flags here, because they need to be parsed in Urfave CLI framework.

I think after your change, the flags won't work. Please check if the following works for you.

./livepeer_cli -http 7937

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, you're right. Silly of me to not realize this before opening up for review - will revisit the CLI framework and fix this PR.

@Quintendos
Copy link

Ask @emranemran to merge this item.

@thomshutt thomshutt closed this Dec 12, 2023
@thomshutt thomshutt deleted the user/emahbub/fix-glog-warning-in-livepeer-cli branch December 12, 2023 10:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

livepeer_cli for Broadcaster: "Error getting status" on startup and when calling "Get node status"
4 participants