We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2c5c7 commit 2f136d4Copy full SHA for 2f136d4
src/cli/onefuzz/templates/radamsa.py
@@ -49,6 +49,7 @@ def basic(
49
notification_config: Optional[NotificationConfig] = None,
50
debug: Optional[List[TaskDebugFlag]] = None,
51
ensemble_sync_delay: Optional[int] = None,
52
+ target_timeout: Optional[int] = None,
53
) -> Optional[Job]:
54
"""
55
Basic radamsa job
@@ -173,6 +174,7 @@ def basic(
173
174
rename_output=rename_output,
175
debug=debug,
176
ensemble_sync_delay=ensemble_sync_delay,
177
+ target_timeout=target_timeout,
178
)
179
180
report_containers = [
@@ -204,6 +206,7 @@ def basic(
204
206
check_retry_count=check_retry_count,
205
207
prereq_tasks=[fuzzer_task.task_id],
208
209
210
211
212
if helper.platform == OS.windows:
@@ -245,6 +248,7 @@ def basic(
245
248
tags=helper.tags,
246
249
247
250
251
252
253
254
self.logger.info("done creating tasks")
0 commit comments