Skip to content

Commit 22c8000

Browse files
author
gau1991
committed
Merge branch 'hotfix/v3.2.2'
2 parents 19f0dac + 005e899 commit 22c8000

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
v 3.2.1 - Jun 19, 205
1+
v 3.2.2 - Jun 19, 2015
2+
- Fixed bug that was preventing disabling debug
3+
4+
v 3.2.1 - Jun 19, 2015
25
- Improved experimental HHVM and Pagespeed handling, fixes #564, #562
36
- Fixed missing link for Proxy sites #571
47
- Added hhvm.server.ip for HHVM config #567

ee/cli/plugins/debug.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,9 @@ def debug_php(self):
224224
hhvmconf=True
225225
else:
226226
hhvmconf=False
227-
data = dict(php="9001", debug="9001", hhvm="9001",
228-
hhvmconf=hhvmcof)
227+
data = dict(php="9000", debug="9001", hhvm="8000",
228+
hhvmconf=hhvmconf)
229229

230-
data = dict(php="9000", debug="9001", hhvm="8000")
231230
Log.debug(self, 'Writting the Nginx debug configration to file'
232231
' /etc/nginx/conf.d/upstream.conf ')
233232
ee_nginx = open('/etc/nginx/conf.d/upstream.conf',

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.2.1"
15+
ee_version = "3.2.2"
1616

1717
# EasyEngine packages versions
1818
ee_wp_cli = "0.19.1"

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fi
4848
# Define variables for later use
4949
ee_branch=$1
5050
readonly ee_version_old="2.2.3"
51-
readonly ee_version_new="3.2.1"
51+
readonly ee_version_new="3.2.2"
5252
readonly ee_log_dir=/var/log/ee/
5353
readonly ee_install_log=/var/log/ee/install.log
5454
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
os.system("git config --global user.email {0}".format(ee_email))
5555

5656
setup(name='ee',
57-
version='3.2.1',
57+
version='3.2.2',
5858
description=long_description,
5959
long_description=long_description,
6060
classifiers=[],

0 commit comments

Comments
 (0)