Switch to side-by-side view
--- a/Allura/allura/lib/solr.py +++ b/Allura/allura/lib/solr.py @@ -8,8 +8,8 @@ `delete` call, unless explicitly overridden. """ - def __init__(self, server, commit=True, commitWithin=None): - pysolr.Solr.__init__(self, server) + def __init__(self, server, commit=True, commitWithin=None, **kw): + pysolr.Solr.__init__(self, server, **kw) self.commit = commit self.commitWithin = commitWithin