Skip to content

Commit

Permalink
Fix compatible problems with old config files
Browse files Browse the repository at this point in the history
  • Loading branch information
lazio579 committed Apr 16, 2019
1 parent c9d4b43 commit def86e2
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 "3")
SET(CPACK_PACKAGE_VERSION_PATCH "4")
SET(CPACK_PACKAGE_VENDOR "MySQL")
SET(PACKAGE_NAME cetus)

Expand Down
2 changes: 1 addition & 1 deletion src/mysql-proxy-cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ chassis_frontend_new(void)
#else
frontend->is_tcp_stream_enabled = 1;
#endif
frontend->is_fast_stream_enabled = 1;
frontend->is_fast_stream_enabled = 0;
frontend->is_partition_mode = 0;
frontend->is_sql_special_processed = 0;
frontend->group_replication_mode = 0;
Expand Down

0 comments on commit def86e2

Please sign in to comment.