diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-15 15:13:22 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-15 15:13:22 +0100 |
commit | a5c72780e6fdf12c003d059f685632541932e3ed (patch) | |
tree | 9e014ae851f0bad7222b67d861f28e53abc25c8a /synapse/storage/_base.py | |
parent | Change from exception to warn (diff) | |
download | synapse-a5c72780e6fdf12c003d059f685632541932e3ed.tar.xz |
Don't pass in removed flag
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index c9677710bb..ede25c43b7 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -401,7 +401,6 @@ class SQLBaseStore(object): yield self.runInteraction( desc, self._simple_insert_txn, table, values, - or_ignore=or_ignore ) except self.database_engine.module.IntegrityError: # We have to do or_ignore flag at this layer, since we can't reuse |