def has_recently_updated_subtask()

in flink_jira_rule.py [0:0]


    def has_recently_updated_subtask(self, parent, updated_within_days):
        find_subtasks_updated_within = (
            f"parent = {parent}  AND updated > startOfDay(-{updated_within_days}d)"
        )
        issues = self.get_issues(find_subtasks_updated_within, 1)
        return len(issues) > 0