@@ -186,9 +186,9 @@ def __init__(
186
186
config , self .data_dictionary , self .report , identifiers
187
187
)
188
188
self .profiler : Optional [SnowflakeProfiler ] = profiler
189
- self .snowsight_url_builder : Optional [SnowsightUrlBuilder ] = (
190
- snowsight_url_builder
191
- )
189
+ self .snowsight_url_builder : Optional [
190
+ SnowsightUrlBuilder
191
+ ] = snowsight_url_builder
192
192
193
193
# These are populated as side-effects of get_workunits_internal.
194
194
self .databases : List [SnowflakeDatabase ] = []
@@ -213,6 +213,9 @@ def get_workunits_internal(self) -> Iterable[MetadataWorkUnit]:
213
213
logger .info ("Creating structured property templates for tags" )
214
214
yield from self .tag_extractor .create_structured_property_templates ()
215
215
# We have to wait until cache invalidates to make sure the structured property template is available
216
+ self .logger .info (
217
+ f"Waiting for { self .config .structured_properties_template_cache_invalidation_interval } seconds for structured properties cache to invalidate"
218
+ )
216
219
time .sleep (
217
220
self .config .structured_properties_template_cache_invalidation_interval
218
221
)
@@ -266,9 +269,9 @@ def get_databases(self) -> Optional[List[SnowflakeDatabase]]:
266
269
)
267
270
return None
268
271
else :
269
- ischema_databases : List [SnowflakeDatabase ] = (
270
- self . get_databases_from_ischema ( databases )
271
- )
272
+ ischema_databases : List [
273
+ SnowflakeDatabase
274
+ ] = self . get_databases_from_ischema ( databases )
272
275
273
276
if len (ischema_databases ) == 0 :
274
277
self .structured_reporter .failure (
0 commit comments