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 dbde67a commit 7fd7697Copy full SHA for 7fd7697
tests/nox/java_client/prepare.py
@@ -2,6 +2,7 @@
2
from pathlib import Path
3
import requests
4
from requests.auth import HTTPBasicAuth
5
+import time
6
7
8
def main():
@@ -66,6 +67,7 @@ def create_user():
66
67
headers={"Content-Type": "application/json"},
68
json={"sql": "GRANT ROLE test_jdbc TO USER databend"},
69
).raise_for_status()
70
+ time.sleep(16)
71
requests.post(
72
"http://localhost:8001/v1/query/",
73
auth=HTTPBasicAuth("root", ""),
0 commit comments