aliyun/log/scheduled_sql_response.py [72:79]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)
        try:
            self._count = int(resp["count"])
            self._total = int(resp["total"])
        except (KeyError, ValueError) as e:
            self._count = 0
            self._total = 0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aliyun/log/scheduled_sql_response.py [137:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)
        try:
            self._count = int(resp["count"])
            self._total = int(resp["total"])
        except (KeyError, ValueError) as e:
            self._count = 0
            self._total = 0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



