This repository has been archived on 2018-06-04. You can view files and clone it, but cannot push or open issues or pull requests.
2010-05-10 14:30:49 -04:00

13 lines
323 B
Python

import lazyboy
import logging
logging.basicConfig(
level = logging.DEBUG,
format = '[%(asctime)s] %(levelname)s: "%(message)s"',
datefmt = '%d/%b/%Y %I:%M:%S'
)
CASSANDRA_POOL = ('127.0.0.1:9160',)
CASSANDRA_SESSION_KEYSPACE = 'Testing'
lazyboy.connection.add_pool(CASSANDRA_SESSION_KEYSPACE, CASSANDRA_POOL)