From b4740ca4a3046c009dadb841273321d3d607e304 Mon Sep 17 00:00:00 2001 From: urihoenig Date: Sun, 25 Apr 2021 19:37:53 +0300 Subject: [PATCH] [Feature store] Fix missing attribute initialization in feature set (#887) --- mlrun/feature_store/feature_set.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mlrun/feature_store/feature_set.py b/mlrun/feature_store/feature_set.py index 723121da3df..32a01ac32f3 100644 --- a/mlrun/feature_store/feature_set.py +++ b/mlrun/feature_store/feature_set.py @@ -220,6 +220,7 @@ def __init__( self._metadata = None self._status = None self._api_client = None + self._run_db = None self.spec = FeatureSetSpec( description=description,