Skip to content

Commit cf28cd5

Browse files
Merge branch 'uv' into improve-azure-functions
2 parents ed129d6 + 43e5730 commit cf28cd5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bbot/modules/templates/sql.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ async def setup(self):
4949
except Exception as e:
5050
last_error = e
5151
if attempt < retries:
52-
self.verbose(f"Failed to connect to {connection_string} (attempt {attempt + 1}/{max_attempts}): {e}")
52+
self.verbose(
53+
f"Failed to connect to {connection_string} (attempt {attempt + 1}/{max_attempts}): {e}"
54+
)
5355
await asyncio.sleep(1)
5456

5557
return False, f"Failed to reach {connection_string} after {max_attempts} attempts: {last_error}"

0 commit comments

Comments
 (0)