Skip to content

Commit

Permalink
Merge pull request restic#4331 from MichaelEischer/fix-mount-failures
Browse files Browse the repository at this point in the history
Hopefully fix `TestMount` failures
  • Loading branch information
MichaelEischer committed May 18, 2023
2 parents 2f518b7 + 5773b86 commit bfc9c6c
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 20 deletions.
6 changes: 5 additions & 1 deletion cmd/restic/cmd_copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (

"github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"golang.org/x/sync/errgroup"
Expand Down Expand Up @@ -236,5 +237,8 @@ func copyTree(ctx context.Context, srcRepo restic.Repository, dstRepo restic.Rep
bar := newProgressMax(!quiet, uint64(len(packList)), "packs copied")
_, err = repository.Repack(ctx, srcRepo, dstRepo, packList, copyBlobs, bar)
bar.Done()
return err
if err != nil {
return errors.Fatal(err.Error())
}
return nil
}
2 changes: 1 addition & 1 deletion cmd/restic/cmd_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func runInit(ctx context.Context, opts InitOptions, gopts GlobalOptions, args []
PackSize: gopts.PackSize * 1024 * 1024,
})
if err != nil {
return err
return errors.Fatal(err.Error())
}

err = s.Init(ctx, version, gopts.password, chunkerPolynomial)
Expand Down
2 changes: 1 addition & 1 deletion cmd/restic/cmd_prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ func doPrune(ctx context.Context, opts PruneOptions, gopts GlobalOptions, repo r
_, err := repository.Repack(ctx, repo, repo, plan.repackPacks, plan.keepBlobs, bar)
bar.Done()
if err != nil {
return errors.Fatalf("%s", err)
return errors.Fatal(err.Error())
}

// Also remove repacked packs
Expand Down
2 changes: 1 addition & 1 deletion cmd/restic/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ func OpenRepository(ctx context.Context, opts GlobalOptions) (*repository.Reposi
PackSize: opts.PackSize * 1024 * 1024,
})
if err != nil {
return nil, err
return nil, errors.Fatal(err.Error())
}

passwordTriesLeft := 1
Expand Down
4 changes: 2 additions & 2 deletions internal/backend/rest/rest.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func Create(ctx context.Context, cfg Config, rt http.RoundTripper) (*Backend, er

_, err = be.Stat(ctx, restic.Handle{Type: restic.ConfigFile})
if err == nil {
return nil, errors.Fatal("config file already exists")
return nil, errors.New("config file already exists")
}

url := *cfg.URL
Expand All @@ -76,7 +76,7 @@ func Create(ctx context.Context, cfg Config, rt http.RoundTripper) (*Backend, er
}

if resp.StatusCode != http.StatusOK {
return nil, errors.Fatalf("server response unexpected: %v (%v)", resp.Status, resp.StatusCode)
return nil, fmt.Errorf("server response unexpected: %v (%v)", resp.Status, resp.StatusCode)
}

_, err = io.Copy(io.Discard, resp.Body)
Expand Down
2 changes: 1 addition & 1 deletion internal/backend/sftp/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func ParseConfig(s string) (interface{}, error) {

p := path.Clean(dir)
if strings.HasPrefix(p, "~") {
return nil, errors.Fatal("sftp path starts with the tilde (~) character, that fails for most sftp servers.\nUse a relative directory, most servers interpret this as relative to the user's home directory.")
return nil, errors.New("sftp path starts with the tilde (~) character, that fails for most sftp servers.\nUse a relative directory, most servers interpret this as relative to the user's home directory")
}

cfg := NewConfig()
Expand Down
2 changes: 1 addition & 1 deletion internal/repository/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var (
ErrNoKeyFound = errors.New("wrong password or no key found")

// ErrMaxKeysReached is returned when the maximum number of keys was checked and no key could be found.
ErrMaxKeysReached = errors.Fatal("maximum number of keys reached")
ErrMaxKeysReached = errors.New("maximum number of keys reached")
)

// Key represents an encrypted master key for a repository.
Expand Down
2 changes: 1 addition & 1 deletion internal/repository/repack.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func Repack(ctx context.Context, repo restic.Repository, dstRepo restic.Reposito
debug.Log("repacking %d packs while keeping %d blobs", len(packs), keepBlobs.Len())

if repo == dstRepo && dstRepo.Connections() < 2 {
return nil, errors.Fatal("repack step requires a backend connection limit of at least two")
return nil, errors.New("repack step requires a backend connection limit of at least two")
}

wg, wgCtx := errgroup.WithContext(ctx)
Expand Down
16 changes: 8 additions & 8 deletions internal/repository/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ func (c *CompressionMode) Type() string {
// New returns a new repository with backend be.
func New(be restic.Backend, opts Options) (*Repository, error) {
if opts.Compression == CompressionInvalid {
return nil, errors.Fatalf("invalid compression mode")
return nil, errors.New("invalid compression mode")
}

if opts.PackSize == 0 {
opts.PackSize = DefaultPackSize
}
if opts.PackSize > MaxPackSize {
return nil, errors.Fatalf("pack size larger than limit of %v MiB", MaxPackSize/1024/1024)
return nil, fmt.Errorf("pack size larger than limit of %v MiB", MaxPackSize/1024/1024)
} else if opts.PackSize < MinPackSize {
return nil, errors.Fatalf("pack size smaller than minimum of %v MiB", MinPackSize/1024/1024)
return nil, fmt.Errorf("pack size smaller than minimum of %v MiB", MinPackSize/1024/1024)
}

repo := &Repository{
Expand Down Expand Up @@ -593,7 +593,7 @@ func (r *Repository) LoadIndex(ctx context.Context) error {
})

if err != nil {
return errors.Fatal(err.Error())
return err
}

err = r.idx.MergeFinalIndexes()
Expand All @@ -613,7 +613,7 @@ func (r *Repository) LoadIndex(ctx context.Context) error {
}
})
if invalidIndex {
return errors.Fatal("index uses feature not supported by repository version 1")
return errors.New("index uses feature not supported by repository version 1")
}
}

Expand Down Expand Up @@ -678,7 +678,7 @@ func (r *Repository) CreateIndexFromPacks(ctx context.Context, packsize map[rest

err = wg.Wait()
if err != nil {
return invalid, errors.Fatal(err.Error())
return invalid, err
}

return invalid, nil
Expand Down Expand Up @@ -723,9 +723,9 @@ func (r *Repository) SearchKey(ctx context.Context, password string, maxKeys int
r.keyID = key.ID()
cfg, err := restic.LoadConfig(ctx, r)
if err == crypto.ErrUnauthenticated {
return errors.Fatalf("config or key %v is damaged: %v", key.ID(), err)
return fmt.Errorf("config or key %v is damaged: %w", key.ID(), err)
} else if err != nil {
return errors.Fatalf("config cannot be loaded: %v", err)
return fmt.Errorf("config cannot be loaded: %w", err)
}

r.setConfig(cfg)
Expand Down
5 changes: 2 additions & 3 deletions internal/restic/snapshot_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ package restic

import (
"encoding/json"
"fmt"
"sort"
"strings"

"github.com/restic/restic/internal/errors"
)

type SnapshotGroupByOptions struct {
Expand All @@ -26,7 +25,7 @@ func splitSnapshotGroupBy(s string) (SnapshotGroupByOptions, error) {
l.Tag = true
case "":
default:
return SnapshotGroupByOptions{}, errors.Fatal("unknown grouping option: '" + option + "'")
return SnapshotGroupByOptions{}, fmt.Errorf("unknown grouping option: %q", option)
}
}
return l, nil
Expand Down

0 comments on commit bfc9c6c

Please sign in to comment.