@@ -17,7 +17,7 @@ class AdobeAnalyticsConnector(Connector):
1717 def __init__ (self , config , plugin_config ):
1818 Connector .__init__ (self , config , plugin_config )
1919 logger .info (
20- "Starting plugin adobe-analytics v0.0.11 with config={}" .format (
20+ "Starting plugin adobe-analytics v0.0.12 with config={}" .format (
2121 logger .filter_secrets (config )
2222 )
2323 )
@@ -115,26 +115,6 @@ def get_connection_from_config(config):
115115 organization_id = organization_id ,
116116 mock = mock
117117 )
118- logger .info ("Testing pagination on report_suites..." )
119- try :
120- report_suites = self .client .list_report_suites ()
121- logger .info ("report_suites={}" .format (report_suites ))
122- except Exception as error :
123- logger .error ("Error {} while listing report suites" .format (error ))
124-
125- logger .info ("Testing pagination on metrics for {}..." .format (self .report_id ))
126- try :
127- report_metrics = self .client .list_report_metrics (self .report_id )
128- logger .info ("report_metrics={}" .format (report_metrics ))
129- except Exception as error :
130- logger .error ("Error {} while listing report metrics" .format (error ))
131-
132- logger .info ("Testing pagination on dimensions for {}..." .format (self .report_id ))
133- try :
134- report_dimensions = self .client .list_report_dimensions (self .report_id )
135- logger .info ("report_metrics={}" .format (report_dimensions ))
136- except Exception as error :
137- logger .error ("Error {} while listing report dimensions" .format (error ))
138118
139119 logger .info ("Testing pagination on report_suites..." )
140120 try :
0 commit comments