0

「MySQL server has gone away」エラーをデバッグしています。多かれ少なかれ機能する提案されたソリューションがあります。

from twisted.enterprise import adbapi
from twisted.python import log
import MySQLdb

class ReconnectingConnectionPool(adbapi.ConnectionPool):
    """Reconnecting adbapi connection pool for MySQL.

    This class improves on the solution posted at
    http://www.gelens.org/2008/09/12/reinitializing-twisted-connectionpool/
    by checking exceptions by error code and only disconnecting the current
    connection instead of all of them.

    Also see:
    http://twistedmatrix.com/pipermail/twisted-python/2009-July/020007.html

    """
    def _runInteraction(self, interaction, *args, **kw):
        try:
            return adbapi.ConnectionPool._runInteraction(self, interaction, *args, **kw)
        except MySQLdb.OperationalError, e:
            if e[0] not in (2006, 2013):
                raise
            log.msg("RCP: got error %s, retrying operation" %(e))
            conn = self.connections.get(self.threadID())
            self.disconnect(conn)
            # try the interaction again
            return adbapi.ConnectionPool._runInteraction(self, interaction, *args, **kw)

ここから引用: http://www.gelens.org/2009/09/13/twisted-connectionpool-revisited/

ただし、例外は ReconnectingConnectionPool だけでなく、_runInteraction 自体でもキャッチされます。そして、log.err をトリガーします。これは (明らかに) 2 つのことを行います。

  • エラーを出力します - アプリケーションは正常に動作しますが
  • さらに悪いことに、試行が失敗するため、テストが失敗します。これが log.err の問題かどうかはよくわかりませんが、それでも発生します。

adbapi をハックすることもできますが、それはおそらく最善の方法ではありません。これを処理するより良い方法はありますか?

4

1 に答える 1

0

エラーがログに記録されていても単体テストをパスさせる方法を尋ねていますか? flushLoggedErrorsを試してください。他に何か質問している場合は、明確にしてください。

于 2012-07-28T00:06:35.560 に答える