aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins
diff options
context:
space:
mode:
authoriaz1607 <iaz1607@yandex-team.com>2023-11-06 17:05:15 +0300
committeriaz1607 <iaz1607@yandex-team.com>2023-11-06 17:30:02 +0300
commita544965dff0b33e9e5602636cff7b48f48591119 (patch)
treeb6c57688c4eb5561e819cd9815fdc8f1f8989575 /build/plugins
parenta55232e4f46b8c50f2be53535c3e2a64fa50cafb (diff)
downloadydb-a544965dff0b33e9e5602636cff7b48f48591119.tar.gz
Canonization backend, format->replace
Diffstat (limited to 'build/plugins')
-rw-r--r--build/plugins/lib/test_const/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py
index cda7c80731..5d1acb850d 100644
--- a/build/plugins/lib/test_const/__init__.py
+++ b/build/plugins/lib/test_const/__init__.py
@@ -43,10 +43,10 @@ YT_RUN_TEST_TAR_NAME = "yt_run_test.tar"
COVERAGE_CFLAGS = ["-fprofile-instr-generate", "-fcoverage-mapping", "-DCLANG_COVERAGE"]
COVERAGE_LDFLAGS = ["-fprofile-instr-generate", "-fcoverage-mapping"]
-CANON_BACKEND_KEY = "canondata_backend"
+CANON_BACKEND_KEY = "{canondata_backend}"
DEFAULT_CANONIZATION_BACKEND = "storage.yandex-team.ru/get-devtools"
MDS_URI_PREFIX = 'https://storage.yandex-team.ru/get-devtools/'
-BACKEND_URI_PREFIX = 'https://{' + CANON_BACKEND_KEY + '}/'
+BACKEND_URI_PREFIX = 'https://' + CANON_BACKEND_KEY + '/'
MDS_SCHEME = 'mds'
CANON_MDS_RESOURCE_REGEX = re.compile(re.escape(MDS_URI_PREFIX) + r'(.*?)($|#)')
CANON_BACKEND_RESOURCE_REGEX = re.compile(re.escape(BACKEND_URI_PREFIX) + r'(.*?)($|#)')