From 2390fe2b6419af8224653359bc38dde4310367b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Honeiser?= Date: Mon, 8 Jul 2024 16:58:30 +0200 Subject: [PATCH 1/2] chore: add prod.refractr.prod.webservices.mozgcp.net to prod default domains --- prod-refractr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/prod-refractr.yml b/prod-refractr.yml index c780314..e3a0d00 100644 --- a/prod-refractr.yml +++ b/prod-refractr.yml @@ -4,6 +4,7 @@ default-domains: - prod.mozilla-redirects.xyz - prod.refractr.mozit.cloud + - prod.refractr.prod.webservices.mozgcp.net - refractr.mozilla.org default-headers: From bc48904d020257b213c4b70b48d1c6449d217ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Honeiser?= Date: Mon, 8 Jul 2024 16:59:30 +0200 Subject: [PATCH 2/2] chore: generate sorted output when running cmi subcommand --- bin/refractr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/refractr b/bin/refractr index 2676030..91419dc 100755 --- a/bin/refractr +++ b/bin/refractr @@ -290,7 +290,7 @@ def main(args): morph[primary_domain]["dns_authorization"] = True output_print( - [morph[item] for item in morph], + [morph[key] for key in sorted(morph)], parsed.output, default_flow_style=False, explicit_start=True,