diff --git a/ingestion/src/metadata/ingestion/source/postgres.py b/ingestion/src/metadata/ingestion/source/postgres.py index 3166cfaaccd..c5a609a5e17 100644 --- a/ingestion/src/metadata/ingestion/source/postgres.py +++ b/ingestion/src/metadata/ingestion/source/postgres.py @@ -95,8 +95,8 @@ class PostgresSource(Source): self.metadata_config = metadata_config self.status = SQLSourceStatus() self.service = get_service_or_create(config, metadata_config) - self.filter_pattern = IncludeFilterPattern self.pattern = config + self.filter_pattern: IncludeFilterPattern = IncludeFilterPattern.allow_all() @classmethod def create(cls, config_dict, metadata_config_dict, ctx):