We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 736f0dd commit 59f07c9Copy full SHA for 59f07c9
products/batch_exports/backend/temporal/destinations/snowflake_batch_export.py
@@ -761,7 +761,7 @@ async def copy_loaded_files_to_snowflake_table(
761
except snowflake.connector.errors.ProgrammingError as e:
762
self.logger.exception(f"Error executing COPY INTO query: {e}")
763
764
- if e.errno == 608:
+ if e.errno == 608 or e.errno == 90073:
765
err_msg = (
766
f"Failed to execute COPY INTO query after {max_attempts} attempts due to warehouse being suspended"
767
)
0 commit comments