summaryrefslogtreecommitdiffstats
path: root/utils/test/vnfcatalogue/VNF_Catalogue/database.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/test/vnfcatalogue/VNF_Catalogue/database.js')
-rw-r--r--utils/test/vnfcatalogue/VNF_Catalogue/database.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/utils/test/vnfcatalogue/VNF_Catalogue/database.js b/utils/test/vnfcatalogue/VNF_Catalogue/database.js
deleted file mode 100644
index 4fa8be10c..000000000
--- a/utils/test/vnfcatalogue/VNF_Catalogue/database.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2017 Kumar Rishabh and others.
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Apache License, Version 2.0
- * which accompanies this distribution, and is available at
- * http://www.apache.org/licenses/LICENSE-2.0
- *******************************************************************************/
-
-var mysql = require('mysql');
-
-var pool = mysql.createPool({
- host: process.env.DB_HOST,
- user: process.env.DB_USER,
- password: process.env.DB_PASSWORD,
- database: process.env.DB_DATABASE,
- connectionLimit: 50,
- supportBigNumbers: true,
- multipleStatements: true,
- dateStrings: 'date'
-});
-
-exports.pool = pool;