(config, random_uuid)
| 82 | |
| 83 | |
| 84 | def create_named_dns(config, random_uuid): |
| 85 | hostname = "named-" + random_uuid + "." + config["zone_domain"] |
| 86 | create_dns(config, hostname, "CNAME", config["tunnel"] + ".cfargotunnel.com") |
| 87 | return hostname |
| 88 | |
| 89 | |
| 90 | @retry(stop_max_attempt_number=MAX_RETRIES, wait_fixed=BACKOFF_SECS * 1000) |
no test coverage detected
searching dependent graphs…