From: ying.yunlong Date: Fri, 2 Mar 2018 07:50:00 +0000 (+0800) Subject: Replace vnflcm mysql connector with PyMySQL. X-Git-Tag: v1.1.0~39 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fgvnfm%2Fvnflcm.git;a=commitdiff_plain;h=b6eb454c104d664517622807dd4f01403e88e1cd Replace vnflcm mysql connector with PyMySQL. Change-Id: I8001ed03234a19ac549c2533bff0c2aff9434fe4 Issue-ID: VFC-786 Signed-off-by: ying.yunlong --- diff --git a/lcm/lcm/__init__.py b/lcm/lcm/__init__.py index c7b6818e..68cf9541 100644 --- a/lcm/lcm/__init__.py +++ b/lcm/lcm/__init__.py @@ -11,3 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +import pymysql + +pymysql.install_as_MySQLdb() diff --git a/lcm/requirements.txt b/lcm/requirements.txt index 07ea5669..b20fefcb 100644 --- a/lcm/requirements.txt +++ b/lcm/requirements.txt @@ -3,7 +3,7 @@ Django==1.11.9 djangorestframework==3.7.7 # for access MySQL -MySQL-python==1.2.5 +PyMySQL==0.7.11 # redis cache redis==2.10.5