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 97bc753 commit 9cfc444Copy full SHA for 9cfc444
tests/ext/test_ext_2400_tg_async.py
@@ -62,6 +62,13 @@ async def __perform_setup(self):
62
)
63
(count,) = await cursor.fetchone()
64
if count > 0:
65
+ try:
66
+ await cursor.callproc(
67
+ "dbms_service.start_service", [self.service_name]
68
+ )
69
+ except Exception as e:
70
+ if not str(e).startswith("ORA-44305:"):
71
+ raise
72
return
73
await cursor.execute(
74
f"""
0 commit comments