fix: remove references, dependency for six package

This commit is contained in:
Lance Edgar 2024-07-01 16:40:46 -05:00
parent ff0af6732a
commit f36759dc48
2 changed files with 3 additions and 7 deletions

View file

@ -24,7 +24,6 @@ classifiers = [
] ]
dependencies = [ dependencies = [
"rattail[db]", "rattail[db]",
"six",
"sqlsoup", "sqlsoup",
] ]

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2018 Lance Edgar # Copyright © 2010-2024 Lance Edgar
# #
# This file is part of Rattail. # This file is part of Rattail.
# #
@ -24,13 +24,10 @@
Tempmon server daemon Tempmon server daemon
""" """
from __future__ import unicode_literals, absolute_import
import time import time
import datetime import datetime
import logging import logging
import six
import humanize import humanize
from sqlalchemy import orm from sqlalchemy import orm
from sqlalchemy.exc import OperationalError from sqlalchemy.exc import OperationalError
@ -91,7 +88,7 @@ class TempmonServerDaemon(Daemon):
# first time after DB stop. but in the case of DB stop, # first time after DB stop. but in the case of DB stop,
# subsequent errors will instead match the second test # subsequent errors will instead match the second test
if error.connection_invalidated or ( if error.connection_invalidated or (
'could not connect to server: Connection refused' in six.text_type(error)): 'could not connect to server: Connection refused' in str(error)):
# only suppress logging for 3 failures, after that we let them go # only suppress logging for 3 failures, after that we let them go
# TODO: should make the max attempts configurable # TODO: should make the max attempts configurable
@ -99,7 +96,7 @@ class TempmonServerDaemon(Daemon):
log_error = False log_error = False
log.debug("database connection failure #%s: %s", log.debug("database connection failure #%s: %s",
self.failed_checks, self.failed_checks,
six.text_type(error)) str(error))
# send error email unless we're suppressing it for now # send error email unless we're suppressing it for now
if log_error: if log_error: