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

*: Fixed further not checked errors [PART2] #403

Merged
merged 1 commit into from
Jul 3, 2018
Merged

Conversation

bwplotka
Copy link
Member

@bwplotka bwplotka commented Jul 3, 2018

Signed-off-by: Bartek Plotka bwplotka@gmail.com

@bwplotka bwplotka force-pushed the errcheck-part2 branch 3 times, most recently from b1848cc to 2733eeb Compare July 3, 2018 08:35
Copy link
Contributor

@domgreen domgreen left a comment

Choose a reason for hiding this comment

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

Overall looks good, there are a few places where we are not passing loggers and using fmt or passing nil into LogOnErr / BestEffortErr.

Makefile Outdated

all: install-tools deps format build
all: deps format build
Copy link
Contributor

Choose a reason for hiding this comment

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

did we not want errcheck to run locally as well? This is what i expect most people to run before putting out a PR.

// Best-effort cleanup.
if err != nil {
os.Remove(dst)
if rerr := os.Remove(dst); rerr != nil {
fmt.Println("failed to best effortly remove ", dst, "err:", rerr)
Copy link
Contributor

Choose a reason for hiding this comment

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

fmt ... why not pass logger into these funcs?

Copy link
Contributor

Choose a reason for hiding this comment

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

Another thought ... do we want to add metrics around the failure to clean up?

Copy link
Member Author

Choose a reason for hiding this comment

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

just wanted to avoid additional parameter, but I guess it might be necessary

Copy link
Member Author

Choose a reason for hiding this comment

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

regarding metric.. I am not sure. I would keep metrics alert on bad symptomps, like "I cannot run further because I have some malformed dir". However most of processes are working on tmp dirs and removed on different levels. So this removal is only "nice" thing to have, nothing critical.

We definitely need to rething retry path and how to handle these. The issue #318 is for it.

Copy link
Member Author

Choose a reason for hiding this comment

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

What about being SIMPLE here and be clear that the directory is malformed and can have partial download and caller should be responsible for clean up?

Choose a reason for hiding this comment

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

Yeah, we should be using logger instead of print statement. Also you can remove "best effortly" substring.
Also add logger to other places too as we will eventually need it anyways as the program grows.

Makefile Outdated

all: install-tools deps format build
.PHONY: all
all: deps format build
Copy link
Contributor

Choose a reason for hiding this comment

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

add errcheck? I expect all people to run make before raising a PR so would catch it before CI.

@@ -200,7 +201,9 @@ func (b *Bucket) getRange(ctx context.Context, name string, off, length int64) (
// NotFoundObject error is revealed only after first Read. This does the initial GetRequest. Prefetch this here
// for convenience.
if _, err := r.Read(nil); err != nil {
r.Close()
//runutil.LogOnErr(nil, r, "s3 get range obj close")
Copy link
Contributor

Choose a reason for hiding this comment

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

uncomment and remove the line below.

Copy link
Member Author

Choose a reason for hiding this comment

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

yea, it was just for CI test - fixed now (:

Copy link
Contributor

Choose a reason for hiding this comment

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

And checking the reviewer looked at the code 😛

// Best-effort cleanup.
if err != nil {
os.Remove(dst)
if rerr := os.Remove(dst); rerr != nil {
fmt.Println("failed to best effortly remove ", dst, "err:", rerr)

Choose a reason for hiding this comment

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

Yeah, we should be using logger instead of print statement. Also you can remove "best effortly" substring.
Also add logger to other places too as we will eventually need it anyways as the program grows.

f, err := os.Create(filepath.Join(p.dir, "prometheus.yml"))
if err != nil {
return err
}
defer f.Close()
defer runutil.BestEffortErr(nil, &err, f, "prometheus config")

Choose a reason for hiding this comment

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

Use LogOnError, I think you care very little if you can't close prometehus.yml.

@@ -146,7 +150,7 @@ func CreateBlock(
if err != nil {
return id, errors.Wrap(err, "create head block")
}
defer h.Close()
defer runutil.BestEffortErr(nil, &err, h, "TSDB Head")

Choose a reason for hiding this comment

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

Rename this function to CaptureErrIfNotSet and change comment to CaptureErrIfNotSet runs closer... Also change wrap argument name to format so that it's consistent with Sprintf. Also logger :P.

Copy link
Member Author

Choose a reason for hiding this comment

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

good points

@SuperQ SuperQ mentioned this pull request Jul 3, 2018
@bwplotka bwplotka force-pushed the errcheck-part2 branch 3 times, most recently from f7ef3ea to c30a30e Compare July 3, 2018 12:59
if strings.HasSuffix(name, DirDelim) {
return DownloadDir(ctx, bkt, name, filepath.Join(dst, filepath.Base(name)))
return DownloadDir(ctx, logger, bkt, name, filepath.Join(dst, filepath.Base(name)))

Choose a reason for hiding this comment

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

If DownloadDir fails, it should delete all files but you may end up with some empty directories. Is that ok?

Signed-off-by: Bartek Plotka <bwplotka@gmail.com>
@bwplotka bwplotka merged commit 3c8546c into master Jul 3, 2018
fpetkovski pushed a commit to fpetkovski/thanos that referenced this pull request Feb 13, 2025
…hanos-io#403)

Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 2.0.4 to 2.0.7.
- [Release notes](https://github.com/chimurai/http-proxy-middleware/releases)
- [Changelog](https://github.com/chimurai/http-proxy-middleware/blob/v2.0.7/CHANGELOG.md)
- [Commits](chimurai/http-proxy-middleware@v2.0.4...v2.0.7)

---
updated-dependencies:
- dependency-name: http-proxy-middleware
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

3 participants