소스 검색

autoping and autoreconnect for site connections

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
d8ab0f3539
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      earwigbot/wiki/site.py

+ 6
- 0
earwigbot/wiki/site.py 파일 보기

@@ -513,6 +513,12 @@ class Site(object):
if "read_default_file" not in args and "user" not in args and "passwd" not in args:
args["read_default_file"] = expanduser("~/.my.cnf")

if "autoping" not in args:
args["autoping"] = True

if "autoreconnect" not in args:
args["autoreconnect"] = True

self._sql_conn = oursql.connect(**args)

def name(self):


불러오는 중...
취소
저장