File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased] - TBD
8
8
9
+ ## [ v1.1.1] - 11-17-2017
10
+ ### Fixed
11
+ - MySQL query was trying to remove a user that wasn't there during the setup process
12
+
9
13
## [ v1.1.0] - 11-16-2017
10
14
### Added
11
15
- SKIP_TESTS parameter so you can just deploy code
Original file line number Diff line number Diff line change @@ -112,8 +112,6 @@ def call(body) {
112
112
env. MYSQL_DATABASE = db_name
113
113
114
114
sql connection : ' test_db' , sql : " DROP DATABASE IF EXISTS ${ env.MYSQL_DATABASE} ;"
115
- sql connection : ' test_db' , sql : " REVOKE ALL PRIVILEGES, GRANT OPTION FROM ${ env.MYSQL_USER} @'%';"
116
- sql connection : ' test_db' , sql : " DROP USER ${ env.MYSQL_USER} @'%';"
117
115
118
116
sql connection : ' test_db' , sql : " CREATE DATABASE IF NOT EXISTS ${ env.MYSQL_DATABASE} ;"
119
117
echo " SQL: CREATE DATABASE IF NOT EXISTS ${ env.MYSQL_DATABASE} ;"
You can’t perform that action at this time.
0 commit comments