Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 2f136d4

Browse files
authored
exposing the target_timeout paramter through the radamsa template (#1499)
1 parent cf2c5c7 commit 2f136d4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/cli/onefuzz/templates/radamsa.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def basic(
4949
notification_config: Optional[NotificationConfig] = None,
5050
debug: Optional[List[TaskDebugFlag]] = None,
5151
ensemble_sync_delay: Optional[int] = None,
52+
target_timeout: Optional[int] = None,
5253
) -> Optional[Job]:
5354
"""
5455
Basic radamsa job
@@ -173,6 +174,7 @@ def basic(
173174
rename_output=rename_output,
174175
debug=debug,
175176
ensemble_sync_delay=ensemble_sync_delay,
177+
target_timeout=target_timeout,
176178
)
177179

178180
report_containers = [
@@ -204,6 +206,7 @@ def basic(
204206
check_retry_count=check_retry_count,
205207
prereq_tasks=[fuzzer_task.task_id],
206208
debug=debug,
209+
target_timeout=target_timeout,
207210
)
208211

209212
if helper.platform == OS.windows:
@@ -245,6 +248,7 @@ def basic(
245248
tags=helper.tags,
246249
prereq_tasks=[fuzzer_task.task_id],
247250
debug=debug,
251+
target_timeout=target_timeout,
248252
)
249253

250254
self.logger.info("done creating tasks")

0 commit comments

Comments
 (0)