File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def __init__(
9393 poll_interval : float = 1.0 ,
9494 timeout_seconds : float = 120.0 ,
9595 output_data_loader : Optional [Callable [[DataLoaderConfig ], DynamicDataLoader ]] = None ,
96- disable_elastic_search : bool = False ,
96+ disable_elastic_search_setup : bool = False ,
9797 elastic_search_config : Optional [ElasticsearchConfig ] = None ,
9898 ):
9999 # Prefer constructor-provided configuration. These can be overridden via
@@ -108,11 +108,11 @@ def __init__(
108108 self ._poll_interval = poll_interval
109109 self ._timeout_seconds = timeout_seconds
110110 self ._output_data_loader = output_data_loader or _default_output_data_loader
111- self ._disable_elastic_search = disable_elastic_search
111+ self ._disable_elastic_search_setup = disable_elastic_search_setup
112112 self ._elastic_search_config = elastic_search_config
113113
114114 def setup (self ) -> None :
115- if self ._disable_elastic_search :
115+ if self ._disable_elastic_search_setup :
116116 logger .info ("Elasticsearch is disabled, skipping setup" )
117117 return
118118 logger .info ("Setting up Elasticsearch" )
You can’t perform that action at this time.
0 commit comments