chusiang / mysql-master-master

Automatically exported from code.google.com/p/mysql-master-master
GNU General Public License v2.0
1 stars 1 forks source link

mmm_control missing includes #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
sbin/mmm_control seems to be missing a require:

# ./mmm_control show
Config file: mmm_mon.conf
Undefined subroutine &main::ShowCommand called at ./mmm_control line 71.

Patch against SVN head:

Index: mmm_control
===================================================================
--- mmm_control (revision 12)
+++ mmm_control (working copy)
@@ -25,6 +25,7 @@
 require $SELF_DIR . '/lib/config.pm';
 require $SELF_DIR . '/lib/log.pm';
 require $SELF_DIR . '/lib/commands.pm';
+require $SELF_DIR . '/lib/control.pm';

 #-----------------------------------------------------------------
 my $postfix = "";

Original issue reported on code.google.com by bn-s...@nesbitt.org on 11 Apr 2007 at 6:50

GoogleCodeExporter commented 9 years ago
Fixed in trunk.

Original comment by kovy...@gmail.com on 11 Apr 2007 at 6:58