Skip to content

Commit 609e4df

Browse files
committed
#1148 source google ads: flake fix
1 parent 635aa27 commit 609e4df

File tree

1 file changed

+2
-2
lines changed
  • airbyte-integrations/connectors/source-google-ads/source_google_ads

1 file changed

+2
-2
lines changed

airbyte-integrations/connectors/source-google-ads/source_google_ads/streams.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def read_records(
189189
and update `start_date` key in the `stream_slice` with the latest read record's cursor value, then retry the sync.
190190
"""
191191
while True:
192-
self.logger.info(f"Starting a while loop iteration")
192+
self.logger.info("Starting a while loop iteration")
193193
customer_id = stream_slice and stream_slice["customer_id"]
194194
try:
195195
records = super().read_records(sync_mode, stream_slice=stream_slice)
@@ -231,7 +231,7 @@ def read_records(
231231
raise exception
232232
else:
233233
# return the control if no exception is raised
234-
self.logger.info(f"Current slice has been read. Exiting read_records()")
234+
self.logger.info("Current slice has been read. Exiting read_records()")
235235
return
236236

237237
def get_query(self, stream_slice: Mapping[str, Any] = None) -> str:

0 commit comments

Comments
 (0)