From: ying.yunlong Date: Fri, 2 Mar 2018 07:46:53 +0000 (+0800) Subject: Replace vfc-vnfmgr mysql connector with PyMySQL X-Git-Tag: v1.1.0~13 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F33753%2F1;p=vfc%2Fgvnfm%2Fvnfres.git Replace vfc-vnfmgr mysql connector with PyMySQL Change-Id: I46b5a353f62c3432f17d57f882f05616e2af7f8f Issue-ID: VFC-786 Signed-off-by: ying.yunlong --- diff --git a/res/requirements.txt b/res/requirements.txt index 07ea566..b20fefc 100644 --- a/res/requirements.txt +++ b/res/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 diff --git a/res/res/__init__.py b/res/res/__init__.py index c7b6818..68cf954 100644 --- a/res/res/__init__.py +++ b/res/res/__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()