Show More
@@ -34,7 +34,8 b' def get_session():' | |||
|
34 | 34 | if celery_on: |
|
35 | 35 | from sqlalchemy import engine_from_config |
|
36 | 36 | from sqlalchemy.orm import sessionmaker, scoped_session |
|
37 |
engine = engine_from_config(dict(config.items('app:main')), |
|
|
37 | engine = engine_from_config(dict(config.items('app:main')), | |
|
38 | 'sqlalchemy.db1.') | |
|
38 | 39 | sa = scoped_session(sessionmaker(bind=engine)) |
|
39 | 40 | else: |
|
40 | 41 | #If we don't use celery reuse our current application Session |
@@ -48,7 +49,7 b' def get_session():' | |||
|
48 | 49 | def whoosh_index(repo_location, full_index): |
|
49 | 50 | log = whoosh_index.get_logger() |
|
50 | 51 | from rhodecode.lib.indexers.daemon import WhooshIndexingDaemon |
|
51 | index_location = '' | |
|
52 | index_location = dict(config.items('app:main'))['index_dir'] | |
|
52 | 53 | WhooshIndexingDaemon(index_location=index_location, |
|
53 | 54 | repo_location=repo_location).run(full_index=full_index) |
|
54 | 55 |
General Comments 0
You need to be logged in to leave comments.
Login now