Shut down ycmd after 30 minutes of inactivity
This commit is contained in:
parent
9fd6c8e533
commit
4e08cde268
@ -3025,7 +3025,7 @@ plugins prevent this event from triggering by exiting Vim through an autocommand
|
|||||||
without using the `nested` keyword (see `:h autocmd-nested`). One of these
|
without using the `nested` keyword (see `:h autocmd-nested`). One of these
|
||||||
plugins is [vim-nerdtree-tabs][]. You should identify which plugin is
|
plugins is [vim-nerdtree-tabs][]. You should identify which plugin is
|
||||||
responsible for the issue and report it to the plugin author. Note that when
|
responsible for the issue and report it to the plugin author. Note that when
|
||||||
this happens, [ycmd][] will automatically shut itself down after 3 hours.
|
this happens, [ycmd][] will automatically shut itself down after 30 minutes.
|
||||||
|
|
||||||
Contributor Code of Conduct
|
Contributor Code of Conduct
|
||||||
---------------------------
|
---------------------------
|
||||||
|
@ -3312,7 +3312,7 @@ plugins prevent this event from triggering by exiting Vim through an
|
|||||||
autocommand without using the 'nested' keyword (see ':h autocmd-nested'). One
|
autocommand without using the 'nested' keyword (see ':h autocmd-nested'). One
|
||||||
of these plugins is vim-nerdtree-tabs [68]. You should identify which plugin is
|
of these plugins is vim-nerdtree-tabs [68]. You should identify which plugin is
|
||||||
responsible for the issue and report it to the plugin author. Note that when
|
responsible for the issue and report it to the plugin author. Note that when
|
||||||
this happens, ycmd [43] will automatically shut itself down after 3 hours.
|
this happens, ycmd [43] will automatically shut itself down after 30 minutes.
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
*youcompleteme-contributor-code-of-conduct*
|
*youcompleteme-contributor-code-of-conduct*
|
||||||
|
@ -99,7 +99,7 @@ CORE_PYTHON3_MESSAGE = (
|
|||||||
CORE_OUTDATED_MESSAGE = (
|
CORE_OUTDATED_MESSAGE = (
|
||||||
'YCM core library too old; PLEASE RECOMPILE by running the install.py '
|
'YCM core library too old; PLEASE RECOMPILE by running the install.py '
|
||||||
'script. See the documentation for more details.' )
|
'script. See the documentation for more details.' )
|
||||||
SERVER_IDLE_SUICIDE_SECONDS = 10800 # 3 hours
|
SERVER_IDLE_SUICIDE_SECONDS = 1800 # 30 minutes
|
||||||
DIAGNOSTIC_UI_FILETYPES = set( [ 'cpp', 'cs', 'c', 'objc', 'objcpp',
|
DIAGNOSTIC_UI_FILETYPES = set( [ 'cpp', 'cs', 'c', 'objc', 'objcpp',
|
||||||
'typescript' ] )
|
'typescript' ] )
|
||||||
CLIENT_LOGFILE_FORMAT = 'ycm_'
|
CLIENT_LOGFILE_FORMAT = 'ycm_'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user