Merge "Debug with barbican-api"

This commit is contained in:
Jenkins 2017-04-05 15:12:18 +00:00 committed by Gerrit Code Review
commit e4ff8fe811
1 changed files with 4 additions and 4 deletions

View File

@ -3,15 +3,15 @@
from paste import deploy
from paste import httpserver
def run():
prop_dir = 'etc/barbican'
application = deploy.loadapp(
'config:{prop_dir}/barbican-api-paste.ini'.format(prop_dir=prop_dir),
name='main',
relative_to='.')
'config:{prop_dir}/barbican-api-paste.ini'.
format(prop_dir=prop_dir), name='main', relative_to='/')
httpserver.serve(application, host='127.0.0.1', port='9311')
httpserver.serve(application, host='0.0.0.0', port='9311')
if __name__ == '__main__':
run()