@nxtedition/lib 17.2.22 → 17.2.23

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.
Files changed (2) hide show
  1. package/app.js +5 -1
  2. package/package.json +1 -1
package/app.js CHANGED
@@ -473,7 +473,11 @@ export function makeApp(appConfig, onTerminate) {
473
473
  ? rxjs.timer(0, 10e3).pipe(
474
474
  rx.exhaustMap(async () => {
475
475
  try {
476
- await couch.up()
476
+ try {
477
+ await couch.up()
478
+ } catch {
479
+ await couch.info()
480
+ }
477
481
  return [
478
482
  {
479
483
  id: 'app:couch',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "17.2.22",
3
+ "version": "17.2.23",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",