@nxtedition/lib 17.2.17 → 17.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.js +7 -0
- package/package.json +1 -1
package/app.js
CHANGED
|
@@ -464,6 +464,13 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
464
464
|
rx.exhaustMap(async () => {
|
|
465
465
|
try {
|
|
466
466
|
await couch.up()
|
|
467
|
+
return [
|
|
468
|
+
{
|
|
469
|
+
id: 'app:couch',
|
|
470
|
+
level: 30,
|
|
471
|
+
msg: 'couch: connected',
|
|
472
|
+
},
|
|
473
|
+
]
|
|
467
474
|
} catch (err) {
|
|
468
475
|
return [
|
|
469
476
|
{
|