refactor(mapping): refactor logging for updating data_parent
This commit is contained in:
parent
b703cfbd7c
commit
52deaacf3a
20
mapping.py
20
mapping.py
@ -132,7 +132,8 @@ def create_tasks_in_tracker(data):
|
|||||||
if parent_task_gid in ya_imported_task_response:
|
if parent_task_gid in ya_imported_task_response:
|
||||||
parent_task_id = ya_imported_task_response[parent_task_gid]['id']
|
parent_task_id = ya_imported_task_response[parent_task_gid]['id']
|
||||||
logger.debag(
|
logger.debag(
|
||||||
f'В задаче {task['summary']} есть связка "parent"'
|
f'В задаче {task['summary']} есть связка "parent"',
|
||||||
|
ensure_ascii=False
|
||||||
)
|
)
|
||||||
update_parent_task(
|
update_parent_task(
|
||||||
base_url,
|
base_url,
|
||||||
@ -154,16 +155,13 @@ def update_parent_task(base_url, headers, task_id, parent_task_id):
|
|||||||
result = json.loads(response.text)
|
result = json.loads(response.text)
|
||||||
logger.warning(json.dumps(result, ensure_ascii=False))
|
logger.warning(json.dumps(result, ensure_ascii=False))
|
||||||
|
|
||||||
# try:
|
if response.status_code == 200:
|
||||||
# response = requests.post(update_url, headers=headers, data=payload)
|
logger.info('Данные о связи с задачей "parent" успешно обновлены')
|
||||||
|
else:
|
||||||
# if response.status_code == 200:
|
logger.error(
|
||||||
# print('Данные успешно обновлены с добавлением нового элемента.')
|
'Ошибка при обновлении данных о связи с задачей "parent": %s',
|
||||||
# else:
|
response.content,
|
||||||
# print('Ошибка при обновлении данных.')
|
)
|
||||||
|
|
||||||
# except requests.exceptions.RequestException as error:
|
|
||||||
# print('Произошла ошибка при обновлении данных:', error)
|
|
||||||
|
|
||||||
|
|
||||||
# asana_data = get_data_from_asana()
|
# asana_data = get_data_from_asana()
|
||||||
|
Loading…
Reference in New Issue
Block a user