Skip to content
Snippets Groups Projects
Unverified Commit 32bb484b authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Do not ignore blobs by default

parent a5d4ff7a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -16,7 +16,7 @@ var (
storage = flag.String("storage", "filesystem", "Storage type to use: filesystem or s3")
jobs = flag.Int("jobs", 10, "Number of concurrent jobs to execute")
parallelWalkJobs = flag.Int("parallel-walk-jobs", 10, "Number of concurrent parallel walk jobs to execute")
ignoreBlobs = flag.Bool("ignore-blobs", true, "Ignore blobs processing and recycling")
ignoreBlobs = flag.Bool("ignore-blobs", false, "Ignore blobs processing and recycling")
softErrors = flag.Bool("soft-errors", false, "Print errors, but do not fail")
)
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment