@nxtedition/lib 17.2.21 → 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 (3) hide show
  1. package/app.js +5 -1
  2. package/couch.js +4 -0
  3. 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/couch.js CHANGED
@@ -157,6 +157,10 @@ export function makeCouch(opts) {
157
157
  params.since = options.since
158
158
  }
159
159
 
160
+ if (options.until != null) {
161
+ params.until = options.until
162
+ }
163
+
160
164
  if (options.style != null) {
161
165
  params.style = options.style
162
166
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "17.2.21",
3
+ "version": "17.2.23",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",