summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-15 15:13:22 +0100
committerErik Johnston <erik@matrix.org>2015-04-15 15:13:22 +0100
commita5c72780e6fdf12c003d059f685632541932e3ed (patch)
tree9e014ae851f0bad7222b67d861f28e53abc25c8a /synapse/storage/_base.py
parentChange from exception to warn (diff)
downloadsynapse-a5c72780e6fdf12c003d059f685632541932e3ed.tar.xz
Don't pass in removed flag
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py1
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