t-bug-catcher 0.6.2__tar.gz → 0.6.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/PKG-INFO +1 -1
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/setup.cfg +1 -1
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/setup.py +1 -1
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/__init__.py +1 -1
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/jira.py +5 -4
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/PKG-INFO +1 -1
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/MANIFEST.in +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/README.rst +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/pyproject.toml +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/requirements.txt +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/bug_catcher.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/bug_snag.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/config.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/exceptions.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/resources/whispers_config.yml +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/stack_saver.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/utils/__init__.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/utils/common.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/utils/logger.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher/workitems.py +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/SOURCES.txt +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/dependency_links.txt +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/not-zip-safe +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/requires.txt +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/t_bug_catcher.egg-info/top_level.txt +0 -0
- {t_bug_catcher-0.6.2 → t_bug_catcher-0.6.3}/tests/test_t_bug_catcher.py +0 -0
|
@@ -26,7 +26,7 @@ setup(
|
|
|
26
26
|
packages=find_packages(include=["t_bug_catcher", "t_bug_catcher.*"]),
|
|
27
27
|
test_suite="tests",
|
|
28
28
|
url="https://www.thoughtful.ai/",
|
|
29
|
-
version="0.6.
|
|
29
|
+
version="0.6.3",
|
|
30
30
|
zip_safe=False,
|
|
31
31
|
install_requires=install_requirements,
|
|
32
32
|
include_package_data=True,
|
|
@@ -1355,10 +1355,6 @@ class Jira:
|
|
|
1355
1355
|
group_id = self.generate_group_id(group_by)
|
|
1356
1356
|
|
|
1357
1357
|
all_issues = self.get_issues()["issues"]
|
|
1358
|
-
existing_ticket = self.filter_tickets(
|
|
1359
|
-
all_tickets=all_issues,
|
|
1360
|
-
error_id=error_id,
|
|
1361
|
-
)
|
|
1362
1358
|
|
|
1363
1359
|
if group_id:
|
|
1364
1360
|
existing_tickets = [
|
|
@@ -1376,6 +1372,11 @@ class Jira:
|
|
|
1376
1372
|
else:
|
|
1377
1373
|
summary = self.__create_summary(type(exception), exception, exception.__traceback__)
|
|
1378
1374
|
|
|
1375
|
+
existing_ticket = self.filter_tickets(
|
|
1376
|
+
all_tickets=all_issues,
|
|
1377
|
+
error_id=error_id,
|
|
1378
|
+
)
|
|
1379
|
+
|
|
1379
1380
|
if existing_ticket:
|
|
1380
1381
|
self.__update_existing_ticket(
|
|
1381
1382
|
existing_ticket=existing_ticket,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|