From b8f0dad65e28dd5df5c43df3c00751f40f83bb25 Mon Sep 17 00:00:00 2001 From: Alexandru Gartner Date: Thu, 19 Jul 2018 18:26:14 +0300 Subject: [PATCH] fixing problem with reindex-fast on CKAN 2.7 I didn't test this on 2.8 but it might be needed there as well from what i see in the code there --- ckan/lib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/lib/cli.py b/ckan/lib/cli.py index a0f64854424..7135a156f55 100644 --- a/ckan/lib/cli.py +++ b/ckan/lib/cli.py @@ -627,7 +627,7 @@ def clear(self): def rebuild_fast(self): ### Get out config but without starting pylons environment #### - conf = self._get_config() + conf = _get_config(self.options.config) ### Get ids using own engine, otherwise multiprocess will balk db_url = conf['sqlalchemy.url']