Skip to content

Commit

Permalink
Tag 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lazio579 committed Mar 25, 2019
1 parent 3dda708 commit c068c03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ EXECUTE_PROCESS(COMMAND git describe --tags
MESSAGE(STATUS "building from ${GIT_REVISION}")
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
SET(CPACK_PACKAGE_VERSION_MINOR "2")
SET(CPACK_PACKAGE_VERSION_PATCH "2")
SET(CPACK_PACKAGE_VERSION_PATCH "3")
SET(CPACK_PACKAGE_VENDOR "MySQL")
SET(PACKAGE_NAME cetus)

Expand Down
2 changes: 1 addition & 1 deletion plugins/admin/admin-commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -1523,7 +1523,7 @@ void admin_get_config(network_mysqld_con* con, char* p)
APPEND_ROW_3_COL(rows, g_strdup(buffer), "pool.max-resp-len", buf3);
APPEND_ROW_3_COL(rows, g_strdup(buffer), "pool.master-preferred", buf4);
} else {
APPEND_ROW_3_COL(rows, g_strdup(buffer), (char*)p, (char*)p);
APPEND_ROW_3_COL(rows, g_strdup(buffer), (char*)p, "please check config file");
}
network_mysqld_con_send_resultset(con->client, fields, rows);

Expand Down

0 comments on commit c068c03

Please sign in to comment.