File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ Phase 2 — full apply to clean up old S3 objects and apply remaining changes:
2929
3030### Added
3131
32+ - **CUMULUS-4707**
33+ - Implement list of granules route in iceberg search api
34+ - **CUMULUS-4708**
35+ - Implement list of executions route in iceberg search api
3236- **CUMULUS-4534**
3337 - collection db model has added non-optional cmr_provider field
3438 - update requires db-migration to add cmr_provider to collection model
Original file line number Diff line number Diff line change 11'use strict' ;
22
3- const _ = require ( 'lodash' ) ;
3+ const isFunction = require ( 'lodash/isFunction ' ) ;
44const test = require ( 'ava' ) ;
55const sinon = require ( 'sinon' ) ;
66// noCallThru prevents proxyquire from loading the real @duckdb /node-api binary,
@@ -104,7 +104,7 @@ test.serial('acquireDuckDbConnection returns a connection from the pool after in
104104 const conn = await acquireDuckDbConnection ( ) ;
105105
106106 t . truthy ( conn , 'should return a connection object' ) ;
107- t . true ( _ . isFunction ( conn . run ) , 'returned connection must expose run()' ) ;
107+ t . true ( isFunction ( conn . run ) , 'returned connection must expose run()' ) ;
108108} ) ;
109109
110110test . serial ( 'released connection is re-acquired on next acquireDuckDbConnection call' , async ( t ) => {
You can’t perform that action at this time.
0 commit comments