Skip to content

Commit

Permalink
Merge pull request #33 from erikcw/sa-fixes-1.0.6
Browse files Browse the repository at this point in the history
Fixes for SQLAlchemy 1.0.6 compatibility.
  • Loading branch information
Deepwalker committed Jul 1, 2015
2 parents 0d02268 + 8074dad commit cbf89bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion aldjemy/core.py
Expand Up @@ -9,6 +9,8 @@
from .wrapper import Wrapper
from .sqlite import SqliteWrapper

import time


__all__ = ['get_engine', 'get_meta', 'get_tables']

Expand Down Expand Up @@ -94,6 +96,7 @@ def __init__(self, pool, alias):
self.__pool = pool
self.info = {}
self.finalize_callback = deque()
self.starttime = time.time()

self.alias = alias
self.wrap = False
Expand All @@ -115,7 +118,7 @@ def connection(self):
def close(self):
pass

def invalidate(self, e=None):
def invalidate(self, e=None, soft=False):
pass

def get_connection(self):
Expand Down

0 comments on commit cbf89bb

Please sign in to comment.