uranusjr commented on code in PR #31543:
URL: https://github.com/apache/airflow/pull/31543#discussion_r1208978685


##########
dev/stats/get_important_pr_candidates.py:
##########
@@ -282,7 +287,10 @@ def score(self):
         # Weight PRs with protm tags more heavily:
         # If there is at least one protm tag, multiply the interaction score 
by the number of tags, up to 3.
         interaction_score = self.interaction_score
-        interaction_score *= min(self.protm_score + 1, 3)
+        try:
+            interaction_score *= min(self.protm_score + 1, 3)
+        except AttributeError:

Review Comment:
   This can happen if the pickle is stale, but I think we should let it raise 
and resolve by re-building the pickle instead.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to