diff options
author | razmser <razmser@yandex-team.ru> | 2022-02-10 16:51:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:06 +0300 |
commit | d3ee18093cac15c8c0746b371bf311882131b133 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/python/cores | |
parent | a7d2aff0c33129eecb25ed04190b40eb79076433 (diff) | |
download | ydb-d3ee18093cac15c8c0746b371bf311882131b133.tar.gz |
Restoring authorship annotation for <razmser@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/python/cores')
-rw-r--r-- | library/python/cores/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/python/cores/__init__.py b/library/python/cores/__init__.py index 85a1171e2f..fdb1f82a46 100644 --- a/library/python/cores/__init__.py +++ b/library/python/cores/__init__.py @@ -75,9 +75,9 @@ def recover_core_dump_file(binary_path, cwd, pid): # widely distributed core dump dir and mask (see DEVTOOLS-4408) yandex_pattern = CoreFilePattern('/coredumps', '%e.%p.%s') - yandex_market_pattern = CoreFilePattern('/var/tmp/cores', 'core.%..%e.%s.%p.*') + yandex_market_pattern = CoreFilePattern('/var/tmp/cores', 'core.%..%e.%s.%p.*') - for pattern in [default_pattern, yandex_pattern, yandex_market_pattern]: + for pattern in [default_pattern, yandex_pattern, yandex_market_pattern]: pattern.mask = resolve_core_mask(pattern.mask) if not os.path.exists(pattern.path): |