Skip to content
Snippets Groups Projects
Commit 728ca11d authored by Tomáš Plesník's avatar Tomáš Plesník
Browse files

pridan MAX_EVENT_LIMIT parametr pro nastaveni maximalniho poctu odeslanych udalosti na klienta

parent cd803f69
No related branches found
No related tags found
No related merge requests found
......@@ -32,3 +32,8 @@ $DB_PASS = "";
#-------------------------------------------------------------------------------
$DB_HOST = "localhost";
#-------------------------------------------------------------------------------
# MAX_EVENT_LIMIT - maximum number of events that can be downloaded from
# Warden server in a single getNewEvents client function call
#-------------------------------------------------------------------------------
$MAX_EVENT_LIMIT = "1000000";
......@@ -221,6 +221,12 @@ make_server_conf()
# DB_HOST - what IP address to listen on of Warden server
#-------------------------------------------------------------------------------
\$DB_HOST = \"localhost\";
#-------------------------------------------------------------------------------
# MAX_EVENT_LIMIT - maximum number of events that can be downloaded from
# Warden server in a single getNewEvents client function call
#-------------------------------------------------------------------------------
\$MAX_EVENT_LIMIT = \"1000000\";
" > $server_conf 2> $err; ret_val=`echo $?`
if [ $ret_val -eq 0 ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment