Commit 1941e33d authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru

Small change for feedback debug

parent 30d22569
......@@ -14,9 +14,9 @@ if (!$MTR_FEEDBACK_PLUGIN) {
# is doing some work in other workers.
#
sleep 100;
sleep 10;
set global sql_mode=ONLY_FULL_GROUP_BY;
sleep 210;
sleep 50;
# The test expects that the plugin will send a report at least 2 times,
......
......@@ -351,7 +351,7 @@ static int free(void *p)
}
#ifdef HAVE_OPENSSL
#define DEFAULT_PROTO "https://"
#define DEFAULT_PROTO "http://"
#else
#define DEFAULT_PROTO "http://"
#endif
......@@ -365,7 +365,7 @@ static MYSQL_SYSVAR_STR(user_info, user_info,
NULL, NULL, "");
static MYSQL_SYSVAR_STR(url, url, PLUGIN_VAR_READONLY | PLUGIN_VAR_RQCMDARG,
"Space separated URLs to send the feedback report to.", NULL, NULL,
DEFAULT_PROTO "mariadb.org/feedback_plugin/post");
DEFAULT_PROTO "127.0.0.1:8888/feedback_plugin/post");
static MYSQL_SYSVAR_ULONG(send_timeout, send_timeout, PLUGIN_VAR_RQCMDARG,
"Timeout (in seconds) for the sending the report.",
NULL, NULL, 60, 1, 60*60*24, 1);
......
......@@ -26,9 +26,9 @@ static my_thread_id thd_thread_id; ///< its thread_id
static size_t needed_size= 20480;
ulong startup_interval= 60*5; ///< in seconds (5 minutes)
ulong first_interval= 60*60*24; ///< in seconds (one day)
ulong interval= 60*60*24*7; ///< in seconds (one week)
ulong startup_interval= 15; ///< in seconds (5 minutes)
ulong first_interval= 30; ///< in seconds (one day)
ulong interval= 60; ///< in seconds (one week)
/**
reads the rows from a table and puts them, concatenated, in a String
......
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