Unverified Commit 2a37107a authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #1805 from jumpserver/dev

Dev
parents 1d462aea c78107f6
......@@ -94,8 +94,11 @@ $(document).ready(function () {
autoclose: true
});
$("#id_assets").parent().find(".select2-selection").on('click', function (e) {
e.preventDefault();
$("#asset_list_modal").modal();
if ($(e.target).attr('class') !== 'select2-selection__choice__remove'){
e.preventDefault();
e.stopPropagation();
$("#asset_list_modal").modal();
}
})
})
.on('click', '#btn_asset_modal_confirm', function () {
......
......@@ -122,7 +122,9 @@ def start_gunicorn():
cmd = [
'gunicorn', 'jumpserver.wsgi',
'-b', bind,
'-k', 'eventlet',
#'-k', 'eventlet',
'-k', 'gthread',
'--threads', '10',
'-w', str(WORKERS),
'--access-logformat', log_format,
'-p', pid_file,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment