Skip to content

Commit

Permalink
chore: remove hogql (#28052)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspicer authored Jan 30, 2025
1 parent fdee4c8 commit cbefa36
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions posthog/models/cohort/cohort.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,19 @@ def fn():
fn()
return

try:
fn()
except Exception:
logger.exception(
"cohort_hogql_calculation_failed",
id=self.pk,
current_version=self.version,
new_version=pending_version,
exc_info=True,
)
# Jan 29 2025 - Temporarily commented out because of celery load issues
return

# try:
# fn()
# except Exception:
# logger.exception(
# "cohort_hogql_calculation_failed",
# id=self.pk,
# current_version=self.version,
# new_version=pending_version,
# exc_info=True,
# )

def insert_users_by_list(self, items: list[str], *, team_id: Optional[int] = None) -> None:
"""
Expand Down

0 comments on commit cbefa36

Please sign in to comment.