Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8ee0cee

Browse files
committed
Updates to meteor libs as well as additional logging to Postgresql interface
1 parent 626d963 commit 8ee0cee

5 files changed

Lines changed: 19 additions & 19 deletions

File tree

.meteor/packages

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ [email protected] # The database Meteor supports right now
1010
[email protected] # Reactive variable for tracker
1111
[email protected] # Meteor's client-side reactive programming library
1212

13-
[email protected].0 # CSS minifier run for production mode
13+
[email protected].2 # CSS minifier run for production mode
1414
[email protected] # JS minifier run for production mode
1515
[email protected] # ECMAScript 5 compatibility for older browsers.
16-
[email protected].0 # Enable ECMAScript2015+ syntax in app code
16+
[email protected].4 # Enable ECMAScript2015+ syntax in app code
1717
[email protected] # Server-side component of the `meteor shell` command
1818

1919
react-meteor-data
@@ -34,5 +34,5 @@ [email protected]
3434
3535
static-html
3636
percolate:synced-cron
37-
37+
3838

.meteor/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+

.meteor/versions

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ alanning:[email protected]
88
99
1010
11-
12-
11+
12+
1313
1414
1515
@@ -26,9 +26,9 @@ [email protected]
2626
2727
2828
29-
30-
31-
29+
30+
31+
3232
3333
3434
@@ -60,21 +60,21 @@ [email protected]
6060
6161
6262
63-
63+
6464
6565
6666
67-
67+
6868
6969
7070
7171
72-
72+
7373
7474
7575
7676
77-
77+
7878
7979
8080
@@ -85,7 +85,7 @@ [email protected]
8585
8686
8787
88-
session@1.1.8
88+
session@1.2.0
8989
9090
9191
@@ -99,11 +99,11 @@ [email protected]
9999
100100
101101
102-
themeteorchef:bert@2.1.3
102+
themeteorchef:bert@2.2.0
103103
104104
105105
106106
107107
108-
108+
109109

imports/api/TestCases/server/postgres.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ const loadFromPostgresql = async (userId) => {
177177
const setMessageTypes = new Set();
178178
const setFormats = new Set();
179179

180-
// console.log('process each row from Postgresql');
180+
console.log('process each row from Postgresql');
181181
result.rows.forEach((row) => {
182182
const testCase = {
183183
_id: row.c_test_case_id,
@@ -206,7 +206,7 @@ const loadFromPostgresql = async (userId) => {
206206
};
207207

208208

209-
// console.log('testCase: ', testCase)
209+
console.log('testCase: ', testCase)
210210
TestCases.insert(testCase);
211211
setGroups.add(row.c_group_name);
212212
setQueues.add(row.c_loading_queue);

setting.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"postgres": {
77
"user": "ipc_vps",
88
"host": "localhost",
9-
"database": "ipcdb_vps",
9+
"database": "ipcdb_dev",
1010
"password": "SoMuchBetterThanOracle12",
1111
"port": 5432
1212
},

0 commit comments

Comments
 (0)