Commit a7318017 authored by Pete Zaitcev's avatar Pete Zaitcev
Browse files

Change "lcoalhost" to "localhost"

Not exactly sure what's going on with connecting to wrong host
here and how it worked, but let's just fix it for now.
parent 15a9bf11
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ from kinetic import buildRange

KINETIC_JAR = os.environ.get('KINETIC_JAR')
KINETIC_PORT = os.environ.get('KINETIC_PORT', 9123)
KINETIC_HOST = os.environ.get('KINETIC_HOST', 'lcoalhost')
KINETIC_HOST = os.environ.get('KINETIC_HOST', 'localhost')

class SimulatorRuntimeError(RuntimeError):

@@ -152,7 +152,7 @@ class BaseTestCase(unittest.TestCase):
            cls.tearDownClass()
            raise

        cls.client = Client("localhost", cls.port)
        cls.client = Client(cls.host, cls.port)

    @classmethod
    def tearDownClass(cls):