##// END OF EJS Templates
release: merge back stable branch into default
release: merge back stable branch into default

File last commit:

r850:cbc05af2 default
r890:3c1446c0 merge default
Show More
region_meta.py
26 lines | 1016 B | text/x-python | PythonLexer
# RhodeCode VCSServer provides access to different vcs backends via network.
# Copyright (C) 2014-2020 RhodeCode GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import os
import tempfile
dogpile_config_defaults = {
'cache_dir': os.path.join(tempfile.gettempdir(), 'rc_cache')
}
# GLOBAL TO STORE ALL REGISTERED REGIONS
dogpile_cache_regions = {}