From 5e949eb202304ff3b6f08c1923b7eecb52eb2453 Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Sun, 15 Aug 2021 01:45:41 +0530 Subject: [PATCH] Postgres IncludeFilterPattern Modification --- ingestion/src/metadata/ingestion/source/postgres.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):