Example #1
0
 def rpl_test(self):
     """Execute test.
     """
     # Check master.info file
     self.warning = True
     m_info = MasterInfo(self.rpl.slave, self.options)
     self.report_test("Check master information file")
     return m_info.check_master_info()
Example #2
0
 def rpl_test(self):
     """Execute test.
     """
     # Check master.info file
     self.warning = True
     m_info = MasterInfo(self.rpl.slave, self.options)
     self.report_test("Check master information file")
     return m_info.check_master_info()
Example #3
0
 def rpl_test(self):
     """Execute test.
     """
     # Check master.info file
     from mysql.utilities.common.replication import MasterInfo
     
     self.warning = True
     m_info = MasterInfo(self.rpl.slave, self.options)
     self.report_test("Check master information file")
     return m_info.check_master_info()
Example #4
0
    def rpl_test(self):
        """Execute test.
        """
        # Check master.info file
        from mysql.utilities.common.replication import MasterInfo

        self.warning = True
        m_info = MasterInfo(self.rpl.slave, self.options)
        self.report_test("Check master information file")
        return m_info.check_master_info()