Changing version back from 1.3 to 1.2.1

pull/631/head
René Cannaò 10 years ago
parent fa0fced4ea
commit 4b14f4e3f3

@ -10,7 +10,7 @@ DEBUG=${ALL_DEBUG}
#export DEBUG
#export OPTZ
#export EXTRALINK
CURVER=1.3
CURVER=1.2.1
.PHONY: default
default: build_deps build_lib build_src

@ -1,7 +1,7 @@
Monitor Module
==============
This section focus on Monitor v1.3, as it introduces multiple improved compared to v1.2
This section focus on Monitor v1.2.1, as it introduces multiple improved compared to v1.2.0
Variables removed as unused or deprecated:
@ -101,12 +101,12 @@ The Monitor Module has several internal threads. There are currently 5 main thre
* monitor_ping_thread: main thread and scheduler for the ping checks
* monitor_read_only_thread: main thread and scheduler for the read only checks
* monitor_replication_lag_thread: main thread and scheduler for the replication lag checks
Up to version v1.2 the above threads but *Monitor* were also responsible to perform the checks
Up to version v1.2.0 the above threads but *Monitor* were also responsible to perform the checks
Thread Pool
===========
The implementation in v1.2 has a limitation with SSL implementation: with SSL, `connect()` is a blocking call, causing the threads to stall while performing the connect phase.
Version v1.3 tries to overcome this limitation with a new implementation. Now:
The implementation in v1.2.0 has a limitation with SSL implementation: with SSL, `connect()` is a blocking call, causing the threads to stall while performing the connect phase.
Version v1.2.1 tries to overcome this limitation with a new implementation. Now:
* *Monitor* initializes a Thread Pool of workers and creates a queue;
* *monitor_connect_thread*, *monitor_ping_thread*, *monitor_read_only_thread* and *monitor_replication_lag_thread* are producers that generate tasks and sent them to the workers using the queue;
* the workers process the tasks and perform the requires actions;

@ -7,7 +7,7 @@
Summary: A high-performance MySQL proxy
Name: proxysql
Version: 1.3
Version: 1.2.1
Release: 1
License: GPL+
Group: Development/Tools

@ -7,7 +7,7 @@
Summary: A high-performance MySQL proxy
Name: proxysql
Version: 1.3
Version: 1.2.1
Release: 1
License: GPL+
Group: Development/Tools
@ -50,8 +50,7 @@ chkconfig --del %{name}
%{_sysconfdir}/init.d/%{name}
%changelog
* Sat Jul 23 2016 Rene Cannao <rene.cannao@gmail.com> 1.3
* Fri Jul 22 2016 Rene Cannao <rene.cannao@gmail.com> 1.2.1
* Sun Jul 24 2016 Rene Cannao <rene.cannao@gmail.com> 1.2.1
* Mon Mar 14 2016 Rene Cannao <rene.cannao@gmail.com> 1.2.0
- First testing release of 1.2
* Sat Mar 11 2016 Rene Cannao <rene.cannao@gmail.com> 1.1.2

@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2
Package: proxysql
Version: 1.3
Version: 1.2.1
Maintainer: Rene Cannao <rene.cannao@gmail.com>
Architecture: amd64
# Changelog: CHANGELOG.md

@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2
Package: proxysql
Version: 1.3
Version: 1.2.1
Maintainer: Rene Cannao <rene.cannao@gmail.com>
Architecture: amd64
# Changelog: CHANGELOG.md

@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2
Package: proxysql
Version: 1.3
Version: 1.2.1
Maintainer: Rene Cannao <rene.cannao@gmail.com>
Architecture: amd64
# Changelog: CHANGELOG.md

@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2
Package: proxysql
Version: 1.3
Version: 1.2.1
Maintainer: Rene Cannao <rene.cannao@gmail.com>
Architecture: amd64
# Changelog: CHANGELOG.md

@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2
Package: proxysql
Version: 1.3
Version: 1.2.1
Maintainer: Rene Cannao <rene.cannao@gmail.com>
Architecture: amd64
# Changelog: CHANGELOG.md

@ -85,8 +85,8 @@
#else
#define DEB ""
#endif /* DEBUG */
#define PROXYSQL_VERSION "1.3" DEB
#define PROXYSQL_CODENAME "Xenon"
#define PROXYSQL_VERSION "1.2.1" DEB
#define PROXYSQL_CODENAME "Truls"
#ifndef PROXYSQL_FUNC_DEFS
#define PROXYSQL_FUNC_DEFS

Loading…
Cancel
Save