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 63ef15d commit f431fe8Copy full SHA for f431fe8
unittests.py
@@ -652,11 +652,17 @@ def init_mysql_server(port, options):
652
"options": {"mysqlx_bind_address": "mysqlx_bind_address={0}".format("::"
653
if tests.IPV6_AVAILABLE else "0.0.0.0")}
654
}]
655
- if not options.secure_file_priv is None:
+
656
+ if options.secure_file_priv is not None:
657
extra_args += [{
658
"version": (5, 5, 53),
659
"options": {"secure_file_priv": "secure_file_priv = %s" % options.secure_file_priv}
660
661
+ else:
662
+ extra_args += [{
663
+ "version": (5, 5, 53),
664
+ "options": {"secure_file_priv": ""}
665
+ }]
666
667
try:
668
mysql_server = mysqld.MySQLServer(
0 commit comments