]> git.pld-linux.org Git - packages/mysql-workbench.git/blame - log_slow_queries.patch
- up to 6.2.3
[packages/mysql-workbench.git] / log_slow_queries.patch
CommitLineData
bcdf3506
AM
1--- mysql-workbench-community-6.2.3-src/plugins/wb.admin/backend/wb_admin_control.py~ 2014-09-15 18:12:58.000000000 +0200
2+++ mysql-workbench-community-6.2.3-src/plugins/wb.admin/backend/wb_admin_control.py 2014-10-15 12:18:45.183813688 +0200
3@@ -722,7 +722,7 @@
5646395f
ER
4 self.server_profile.general_log_file_path = general_log_file_path or os.path.join(self.server_profile.datadir, hostname + '.log')
5 request_save_profile = True
7c4486da 6
5646395f
ER
7- slow_query_log_file = opts[config_section].get('log-slow-queries', '').strip(' "') if opts.has_key(config_section) else ''
8+ slow_query_log_file = (opts[config_section].get('log-slow-queries', '') or opts[config_section].get('log_slow_queries', '')).strip(' "') if opts.has_key(config_section) else ''
bcdf3506
AM
9 slow_query_log_file = normpath(slow_query_log_file) if slow_query_log_file else ''
10 if slow_query_log_file and self.server_profile.slow_log_file_path != slow_query_log_file:
5646395f 11 self.server_profile.slow_log_file_path = slow_query_log_file or os.path.join(self.server_profile.datadir, hostname + '.slow')
This page took 0.069162 seconds and 4 git commands to generate.