Merge pull request #702 from litghost/lower_retry_count

Lower retry count to avoid taking a long time to fail when the fuzzer is broken
This commit is contained in:
litghost 2019-03-06 13:18:46 -08:00 committed by GitHub
commit 484eae2bb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ def main(argv):
parser.add_argument(
"--retries",
type=int,
default=5,
default=2,
help="Retry a failed fuzzer n times.",
)
args = parser.parse_args()