@@ -71,19 +71,19 @@ export class Loader<LoadedValue, LoadParams = string, LoadManyParams = LoadParam
7171
7272 public async forceSetValue ( key : string , newValue : LoadedValue | null ) {
7373 this . inMemoryCache . set ( key , newValue )
74- /* v8 ignore next 3 */
74+ /* v8 ignore next -- @preserve */
7575 if ( this . runningLoads . has ( key ) ) {
7676 this . runningLoads . delete ( key )
7777 }
7878
7979 if ( this . asyncCache ) {
8080 await this . asyncCache . set ( key , newValue ) . catch ( ( err ) => {
81- /* v8 ignore next 1 */
81+ /* v8 ignore next -- @preserve */
8282 this . cacheUpdateErrorHandler ( err , key , this . asyncCache ! , this . logger )
8383 } )
8484 }
8585
86- /* v8 ignore next 5 */
86+ /* v8 ignore next -- @preserve */
8787 if ( this . notificationPublisher ) {
8888 this . notificationPublisher . set ( key , newValue ) . catch ( ( err ) => {
8989 this . notificationPublisher ! . errorHandler ( err , this . notificationPublisher ! . channel , this . logger )
@@ -97,14 +97,14 @@ export class Loader<LoadedValue, LoadParams = string, LoadManyParams = LoadParam
9797 if ( finalValue !== undefined ) {
9898 this . inMemoryCache . set ( key , finalValue )
9999
100- /* v8 ignore next 3 */
100+ /* v8 ignore next -- @preserve */
101101 if ( this . runningLoads . has ( key ) ) {
102102 this . runningLoads . delete ( key )
103103 }
104104 }
105105
106106 // In order to keep other cluster nodes in-sync with potentially changed entry, we force them to refresh too
107- /* v8 ignore next 5 */
107+ /* v8 ignore next -- @preserve */
108108 if ( this . notificationPublisher ) {
109109 this . notificationPublisher . delete ( key ) . catch ( ( err ) => {
110110 this . notificationPublisher ! . errorHandler ( err , this . notificationPublisher ! . channel , this . logger )
0 commit comments