atk-common 1.35.0__py3-none-any.whl → 1.36.0__py3-none-any.whl
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.
- atk_common/__init__.py +2 -1
- atk_common/error_utils.py +16 -0
- {atk_common-1.35.0.dist-info → atk_common-1.36.0.dist-info}/METADATA +1 -1
- {atk_common-1.35.0.dist-info → atk_common-1.36.0.dist-info}/RECORD +7 -7
- {atk_common-1.35.0.dist-info → atk_common-1.36.0.dist-info}/WHEEL +0 -0
- {atk_common-1.35.0.dist-info → atk_common-1.36.0.dist-info}/licenses/license.txt +0 -0
- {atk_common-1.35.0.dist-info → atk_common-1.36.0.dist-info}/top_level.txt +0 -0
atk_common/__init__.py
CHANGED
@@ -3,7 +3,7 @@ from atk_common.datetime_utils import get_utc_date_time, seconds_to_utc_timestam
|
|
3
3
|
from atk_common.db_utils import sql, sql_with_record, convert_none_to_null, date_time_utc_column
|
4
4
|
from atk_common.docker_utils import get_current_container_info
|
5
5
|
from atk_common.env_utils import get_env_value
|
6
|
-
from atk_common.error_utils import get_message, create_error_log, get_error_entity, handle_error, get_response_error, get_error_type
|
6
|
+
from atk_common.error_utils import get_message, create_error_log, get_error_entity, resend_error_entity, handle_error, get_response_error, get_error_type
|
7
7
|
from atk_common.http_utils import is_http_status_ok, is_http_status_internal, get_test_response
|
8
8
|
from atk_common.file_utils import get_image_file_type
|
9
9
|
from atk_common.log_utils import add_log_item, add_log_item_http
|
@@ -24,6 +24,7 @@ __all__ = [
|
|
24
24
|
'get_message',
|
25
25
|
'create_error_log',
|
26
26
|
'get_error_entity',
|
27
|
+
'resend_error_entity',
|
27
28
|
'handle_error',
|
28
29
|
'get_response_error',
|
29
30
|
'get_error_type',
|
atk_common/error_utils.py
CHANGED
@@ -43,6 +43,22 @@ def get_error_entity(error, method, error_type, status_code, container_info):
|
|
43
43
|
mimetype='application/json'
|
44
44
|
)
|
45
45
|
|
46
|
+
def resend_error_entity(error_entity, method, container_info):
|
47
|
+
data = {}
|
48
|
+
data['statusCode'] = error_entity['statusCode']
|
49
|
+
data['exceptionType'] = error_entity['exceptionType']
|
50
|
+
data['errorType'] = error_entity['errorType']
|
51
|
+
data['message'] = error_entity['message']
|
52
|
+
data['method'] = method
|
53
|
+
data['timestamp'] = get_utc_date_time()
|
54
|
+
data['containerInfo'] = container_info
|
55
|
+
create_error_log(data)
|
56
|
+
return Response(
|
57
|
+
response=json.dumps(data),
|
58
|
+
status=HTTPStatus.INTERNAL_SERVER_ERROR,
|
59
|
+
mimetype='application/json'
|
60
|
+
)
|
61
|
+
|
46
62
|
def handle_error(resp, status):
|
47
63
|
if is_http_status_internal(resp.status_code):
|
48
64
|
add_log_item(resp.json().get('message'))
|
@@ -1,9 +1,9 @@
|
|
1
|
-
atk_common/__init__.py,sha256=
|
1
|
+
atk_common/__init__.py,sha256=DVQ5Q9hlTq9spM4OU5omLll7w5KQmbPBMiX6wUH0r2c,1674
|
2
2
|
atk_common/datetime_utils.py,sha256=3OIzPCt7W3vA4HvjnlfV0KJjRAjXuTaJ_QOa-cCMNns,2044
|
3
3
|
atk_common/db_utils.py,sha256=odUtXcS7Mumw5eGyVyVimL_U_lP7TqMX9v8nWO5nMvg,902
|
4
4
|
atk_common/docker_utils.py,sha256=nkUhp2OhwJsm41JDujHDY-JxQfdDjy91duprH59Esfk,2084
|
5
5
|
atk_common/env_utils.py,sha256=66v-S0vlkJNaun6ay1XcOGRtYJb4Ce4odJsWxuaHsQc,373
|
6
|
-
atk_common/error_utils.py,sha256=
|
6
|
+
atk_common/error_utils.py,sha256=_7y_0lPln1dKNMWDcENO6T9G2kVhl-Kr2z8eHulMaVo,2987
|
7
7
|
atk_common/file_utils.py,sha256=UDwcRquO9IrqRrlUM0t-_g4R1-FKt8ZqQinSEqXOAk8,112
|
8
8
|
atk_common/http_utils.py,sha256=M1Qz2Cus3Ek8nUOqraT-30GKSj7nkAvJx2f7rnpX5Pk,656
|
9
9
|
atk_common/log_utils.py,sha256=k7VaknmSGvHQV6-eznltNUa3BOAywjFHkhVzDT1P0Hs,496
|
@@ -42,7 +42,7 @@ atk_common/enums/sensor_type_enum.py,sha256=UBa3LPyGTKgEJV578CqFlwXjnlXqVlybrvzd
|
|
42
42
|
atk_common/enums/speed_control_status_enum.py,sha256=qpURh0K1L1tSpbrzVnckoe4hUn1illIkbo7k4mLfzIM,182
|
43
43
|
atk_common/enums/speed_control_status_type_enum.py,sha256=qpURh0K1L1tSpbrzVnckoe4hUn1illIkbo7k4mLfzIM,182
|
44
44
|
atk_common/enums/violation_type_enum.py,sha256=01qTHOj-O8bOc-nwIHVnxLosm4cusD_YuqXM3ZsiRRk,86
|
45
|
-
atk_common-1.
|
45
|
+
atk_common-1.36.0.dist-info/licenses/license.txt,sha256=_0O6fWM00-wTurDjnZhUP_N5QiwGhItaQZqHq5eqadA,1063
|
46
46
|
atk_package/__init__.py,sha256=EceDa352WFHTdC_LxYANXf_TS9pGzK3MCx87bwAKTvg,811
|
47
47
|
atk_package/datetime_utils.py,sha256=qsVF7l90P1-xukG2tV_jLqG9J_Yfl5wTpyfrdPBlyMo,239
|
48
48
|
atk_package/env_utils.py,sha256=bXOrxM3fZUslqfmZt75iphbEJHbG4riJa8XOVzPwIII,313
|
@@ -55,7 +55,7 @@ atk_package/enums/__init__.py,sha256=EtUr_--MQj1Rc_R0sF_ELXIThmhpfmhDWq3YaK9oQMk
|
|
55
55
|
atk_package/enums/command_status_enum.py,sha256=M2Nln27a_DbzI07-gfytWQk2X087JhkU6Fmard5qVHs,127
|
56
56
|
atk_package/enums/speed_control_status_enum.py,sha256=qpURh0K1L1tSpbrzVnckoe4hUn1illIkbo7k4mLfzIM,182
|
57
57
|
shared_python_atk_enforcement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
-
atk_common-1.
|
59
|
-
atk_common-1.
|
60
|
-
atk_common-1.
|
61
|
-
atk_common-1.
|
58
|
+
atk_common-1.36.0.dist-info/METADATA,sha256=ZiRPVbhqdI159JVsMURwc-P4lc8dQut-q3ZTmzunXJc,1464
|
59
|
+
atk_common-1.36.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
60
|
+
atk_common-1.36.0.dist-info/top_level.txt,sha256=4CwRjkLnheIdI4jQwc4tK3dbRc58WqUmoqjkdDTWlME,41
|
61
|
+
atk_common-1.36.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|