cubicweb/pyramid/init_instance.py
author Denis Laxalde <denis.laxalde@logilab.fr>
Thu, 23 Feb 2017 17:34:12 +0100
changeset 11975 248039d0e6b1
parent 11631 faf279e33298
permissions -rw-r--r--
[server] Fix a typo in log message in Repository.init_cnxset_pool()

from cubicweb.cwconfig import CubicWebConfiguration


def includeme(config):
    appid = config.registry.settings['cubicweb.instance']
    cwconfig = CubicWebConfiguration.config_for(appid)

    config.registry['cubicweb.config'] = cwconfig
    config.registry['cubicweb.repository'] = repo = cwconfig.repository()
    config.registry['cubicweb.registry'] = repo.vreg