##// END OF EJS Templates
threading: Add factory that creates curl session for each thread....
threading: Add factory that creates curl session for each thread. When creating a repo with an import url pointing to another repo on the same enterprise instance we call the vcssserver to check the url. The vcsserver then calls to enterprise to verify the url. This leads to two threads using the same cur session.

File last commit:

r1:854a839a default
r243:dae685be default
Show More
dev-settings.rst
46 lines | 957 B | text/x-rst | RstLexer
project: added all source files and assets
r1
==========================
Settings for Development
==========================
We have a few settings which are intended to be used only for development
purposes. This section contains an overview of them.
`debug_style`
=============
Enables the section "Style" in the application. This section provides an
overview of all components which are found in the frontend style of the
application.
`vcs.start_server`
==================
Starts the server as a subprocess while the system comes up. Intended usage is
to ease development.
`[logging]`
===========
Use this to configure loggig to your current needs. The documentation of
Python's `logging` module explains all details. The following snippets are
useful for day to day development work.
Mute SQL output
---------------
They come out of the package `sqlalchemy.engine`::
[logger_sqlalchemy]
level = WARNING
handlers = console_sql
qualname = sqlalchemy.engine
propagate = 0