We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c16b3a commit 08b4ad8Copy full SHA for 08b4ad8
1 file changed
tests/smoke.py
@@ -31,7 +31,12 @@
31
parser.add_argument("sql", help="SQL query to execute")
32
args = parser.parse_args()
33
34
- logging.basicConfig(stream=sys.stdout, level=args.debug)
+ logging.basicConfig(
35
+ stream=sys.stdout,
36
+ level=args.debug,
37
+ format="%(asctime)s.%(msecs)03d %(levelname)s %(name)20s: %(message)s",
38
+ datefmt="%Y-%m-%d %H:%M:%S",
39
+ )
40
logging.getLogger("websockets.protocol").setLevel(args.debug)
41
42
api_key = None
@@ -58,7 +63,7 @@
58
63
api_key=api_key,
59
64
runtime=Runtime.SEDONA,
60
65
region=Region.AWS_US_WEST_2,
61
- wait_timeout_seconds=900,
66
+ wait_timeout=900,
62
67
)
68
69
with conn_func() as conn:
0 commit comments