@@ -11,6 +11,7 @@ import { setTimeout } from 'node:timers/promises'
11
11
import stringHelpers from '@adonisjs/core/helpers/string'
12
12
import { BaseCheck , Result } from '@adonisjs/core/health'
13
13
import type { HealthCheckResult } from '@adonisjs/core/types/health'
14
+ import * as errors from '../errors.js'
14
15
15
16
import type { Connection } from '../types.js'
16
17
@@ -48,12 +49,12 @@ export class RedisMemoryUsageCheck extends BaseCheck {
48
49
/**
49
50
* Memory consumption threshold after which a warning will be created
50
51
*/
51
- #warnThreshold: number = stringHelpers . bytes . parse ( '100 mb' )
52
+ #warnThreshold: number = stringHelpers . bytes . parse ( '100 mb' ) !
52
53
53
54
/**
54
55
* Memory consumption threshold after which an error will be created
55
56
*/
56
- #failThreshold: number = stringHelpers . bytes . parse ( '120 mb' )
57
+ #failThreshold: number = stringHelpers . bytes . parse ( '120 mb' ) !
57
58
58
59
/**
59
60
* Health check public name
@@ -142,7 +143,13 @@ export class RedisMemoryUsageCheck extends BaseCheck {
142
143
* ```
143
144
*/
144
145
warnWhenExceeds ( value : string | number ) {
145
- this . #warnThreshold = stringHelpers . bytes . parse ( value )
146
+ const bytes = stringHelpers . bytes . parse ( value )
147
+
148
+ if ( bytes === null ) {
149
+ throw new errors . E_INVALID_BYTES_VALUE ( [ value ] )
150
+ }
151
+
152
+ this . #warnThreshold = bytes
146
153
return this
147
154
}
148
155
@@ -158,7 +165,13 @@ export class RedisMemoryUsageCheck extends BaseCheck {
158
165
* ```
159
166
*/
160
167
failWhenExceeds ( value : string | number ) {
161
- this . #failThreshold = stringHelpers . bytes . parse ( value )
168
+ const bytes = stringHelpers . bytes . parse ( value )
169
+
170
+ if ( bytes === null ) {
171
+ throw new errors . E_INVALID_BYTES_VALUE ( [ value ] )
172
+ }
173
+
174
+ this . #failThreshold = bytes
162
175
return this
163
176
}
164
177
0 commit comments