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