diff options
author | Ryan Lucio <rlucio@internap.com> | 2011-01-03 10:55:52 -0800 |
---|---|---|
committer | Ryan Lucio <rlucio@internap.com> | 2011-01-03 10:55:52 -0800 |
commit | 5fd9ff898bf372f26bac3c0530521ba7abb7f26c (patch) | |
tree | 7f5dfd4531f345a5120d5f967363d1d2508f92d1 | |
parent | 7f27f62e41fd655049574975bd3bf6c5b00e9ccf (diff) | |
download | nova-5fd9ff898bf372f26bac3c0530521ba7abb7f26c.tar.gz nova-5fd9ff898bf372f26bac3c0530521ba7abb7f26c.tar.xz nova-5fd9ff898bf372f26bac3c0530521ba7abb7f26c.zip |
removed extra whitespace chars at the end of the changed lines
-rw-r--r-- | nova/db/sqlalchemy/session.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/db/sqlalchemy/session.py b/nova/db/sqlalchemy/session.py index ca23e93d8..c3876c02a 100644 --- a/nova/db/sqlalchemy/session.py +++ b/nova/db/sqlalchemy/session.py @@ -36,8 +36,8 @@ def get_session(autocommit=True, expire_on_commit=False): global _MAKER if not _MAKER: if not _ENGINE: - _ENGINE = create_engine(FLAGS.sql_connection, - pool_recycle=FLAGS.sql_idle_timeout, + _ENGINE = create_engine(FLAGS.sql_connection, + pool_recycle=FLAGS.sql_idle_timeout, echo=False) _MAKER = (sessionmaker(bind=_ENGINE, autocommit=autocommit, |