Skip to content

Commit

Permalink
Removed log_exceptions_and_usage
Browse files Browse the repository at this point in the history
  • Loading branch information
tmihalac authored Jun 5, 2024
1 parent 9eae498 commit 1d26788
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
from feast.repo_config import FeastConfigBaseModel, RepoConfig
from feast.saved_dataset import SavedDatasetStorage
from feast.type_map import pa_to_mariadb_type
from feast.usage import log_exceptions_and_usage

# Make sure warning doesn't raise more than once.
warnings.simplefilter("once", RuntimeWarning)
Expand Down Expand Up @@ -66,7 +65,6 @@ class MariaDBOfflineStore(OfflineStore):
"""

@staticmethod
@log_exceptions_and_usage(offline_store="mariadb")
def pull_latest_from_table_or_query(
config: RepoConfig,
data_source: DataSource,
Expand Down Expand Up @@ -112,7 +110,6 @@ def pull_latest_from_table_or_query(
)

@staticmethod
@log_exceptions_and_usage(offline_store="mariadb")
def pull_all_from_table_or_query(
config: RepoConfig,
data_source: DataSource,
Expand Down Expand Up @@ -146,7 +143,6 @@ def pull_all_from_table_or_query(
)

@staticmethod
@log_exceptions_and_usage(offline_store="mariadb")
def get_historical_features(
config: RepoConfig,
feature_views: List[FeatureView],
Expand Down Expand Up @@ -234,7 +230,6 @@ def write_logged_features(
raise NotImplementedError()

@staticmethod
@log_exceptions_and_usage(offline_store="mariadb")
def offline_write_batch(
config: RepoConfig,
feature_view: FeatureView,
Expand Down

0 comments on commit 1d26788

Please sign in to comment.