File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -77,19 +77,18 @@ class Chronos {
77
77
return mongo . communications ( this . config ) ;
78
78
}
79
79
} else if ( database . type === 'PostgreSQL' ) {
80
-
81
- /**
82
- * If the provided database is PostgreSQL
83
- * - Connection is made to the postgres client via the provided URI by the user.
84
- *
85
- * - 'services' table will be created if not already and stores every microservice
86
- * that is apart of the application.
87
- *
88
- * - Information is collected if the microservice is containerized
89
- *
90
- * - 'communications' table will be created which creates a new row entry for every
91
- * endpoint that the user Request travels through (tracked with hpropograte)
92
- */
80
+ /**
81
+ * If the provided database is PostgreSQL
82
+ * - Connection is made to the postgres client via the provided URI by the user.
83
+ *
84
+ * - 'services' table will be created if not already and stores every microservice
85
+ * that is apart of the application.
86
+ *
87
+ * - Information is collected if the microservice is containerized
88
+ *
89
+ * - 'communications' table will be created which creates a new row entry for every
90
+ * endpoint that the user Request travels through (tracked with hpropograte)
91
+ */
93
92
postgres . connect ( this . config ) ;
94
93
postgres . services ( this . config ) ;
95
94
dockerized ? postgres . docker ( this . config ) : postgres . health ( this . config ) ;
You can’t perform that action at this time.
0 commit comments