22
22
create_variant ,
23
23
get_assume_role ,
24
24
get_s3_put ,
25
+ get_standard_auth_ssl ,
25
26
get_subprocess_exec ,
26
27
get_task_name ,
27
28
get_variant_name ,
@@ -617,8 +618,7 @@ def create_other_hosts_tasks():
617
618
tasks = []
618
619
619
620
for topology in TOPOLOGIES :
620
- auth = "auth" if topology == "sharded_cluster" else "noauth"
621
- ssl = "nossl" if topology == "standalone" else "ssl"
621
+ auth , ssl = get_standard_auth_ssl (topology )
622
622
tags = [
623
623
"other-hosts" ,
624
624
f"{ topology } -{ auth } -{ ssl } " ,
@@ -638,8 +638,7 @@ def create_standard_linux_tasks():
638
638
for (version , topology ), python in zip_cycle (
639
639
list (product (ALL_VERSIONS , TOPOLOGIES )), ALL_PYTHONS
640
640
):
641
- auth = "auth" if topology == "sharded_cluster" else "noauth"
642
- ssl = "nossl" if topology == "standalone" else "ssl"
641
+ auth , ssl = get_standard_auth_ssl (topology )
643
642
tags = [
644
643
"standard-linux" ,
645
644
f"server-{ version } " ,
@@ -662,8 +661,7 @@ def create_standard_non_linux_tasks():
662
661
for (version , topology ), python , sync in zip_cycle (
663
662
list (product (ALL_VERSIONS , TOPOLOGIES )), CPYTHONS , SYNCS
664
663
):
665
- auth = "auth" if topology == "sharded_cluster" else "noauth"
666
- ssl = "nossl" if topology == "standalone" else "ssl"
664
+ auth , ssl = get_standard_auth_ssl (topology )
667
665
tags = [
668
666
"standard-non-linux" ,
669
667
f"server-{ version } " ,
0 commit comments