Skip to content

Commit

Permalink
remove caching for now
Browse files Browse the repository at this point in the history
  • Loading branch information
timgl committed Jan 15, 2025
1 parent 30f2b91 commit da209f5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions posthog/hogql/database/schema/channel_type.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from dataclasses import dataclass
from typing import Optional, Union
from datetime import timedelta
from posthog.cache_utils import cache_for

from posthog.hogql import ast
from posthog.hogql.database.models import ExpressionField
Expand Down Expand Up @@ -62,7 +60,6 @@ def create_initial_domain_type(name: str):
)


@cache_for(timedelta(minutes=30))
def create_initial_channel_type(name: str, custom_rules: Optional[list[CustomChannelRule]] = None):
return ExpressionField(
name=name,
Expand Down

0 comments on commit da209f5

Please sign in to comment.