We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdfb04 commit dc76d1fCopy full SHA for dc76d1f
src/deadline_test_fixtures/fixtures.py
@@ -4,6 +4,8 @@
4
import botocore
5
import botocore.client
6
import botocore.loaders
7
+import botocore.config
8
+from botocore.config import Config
9
import boto3
10
import glob
11
import json
@@ -591,7 +593,9 @@ def worker(
591
593
ec2_client = boto3.client("ec2")
592
594
s3_client = boto3.client("s3")
595
ssm_client = boto3.client("ssm")
- deadline_client = boto3.client("deadline")
596
+
597
+ config = Config(retries={"max_attempts": 10, "mode": "standard"})
598
+ deadline_client = boto3.client("deadline", config=config)
599
600
worker = ec2_worker_type(
601
ec2_client=ec2_client,
0 commit comments