From b9f01dde94e3507bbbf8bef31b0cd9eafafd84c2 Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Wed, 5 Jun 2024 19:32:22 +0100 Subject: [PATCH] FIX: Fix getting `retry_count` attribute skipci --- octue/cloud/deployment/google/answer_pub_sub_question.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octue/cloud/deployment/google/answer_pub_sub_question.py b/octue/cloud/deployment/google/answer_pub_sub_question.py index 9a18e476c..502854a84 100644 --- a/octue/cloud/deployment/google/answer_pub_sub_question.py +++ b/octue/cloud/deployment/google/answer_pub_sub_question.py @@ -38,7 +38,7 @@ def answer_question(question, project_name): originator_question_uuid = get_nested_attribute(question, "attributes.originator_question_uuid") parent = get_nested_attribute(question, "attributes.parent") originator = get_nested_attribute(question, "attributes.originator") - retry_count = get_nested_attribute(question, "retry_count") + retry_count = get_nested_attribute(question, "attributes.retry_count") order = EventCounter()