File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ exports.radius = function (
560
560
* Redis server ping
561
561
* @param {string } dsn The redis connection string
562
562
* @param {boolean } rejectUnauthorized If false, allows unverified server certificates.
563
- * @returns {Promise<any> }
563
+ * @returns {Promise<any> } Response from server
564
564
*/
565
565
exports . redisPingAsync = function ( dsn , rejectUnauthorized ) {
566
566
return new Promise ( ( resolve , reject ) => {
Original file line number Diff line number Diff line change @@ -1118,10 +1118,9 @@ message HealthCheckResponse {
1118
1118
/**
1119
1119
* Retrieves the appropriate ignore TLS error label based on the monitor type.
1120
1120
*
1121
- * @return {string} Returns the non specific label if the monitor type is 'redis',
1122
- * otherwise, returns the default.
1121
+ * @returns {string} Returns the non specific label if the monitor type is 'redis', otherwise, returns the default.
1123
1122
*/
1124
- ignoreTlsLabel () {
1123
+ ignoreTlsLabel () {
1125
1124
return this .monitor .type === " redis"
1126
1125
? this .$t (" ignoreTLSErrorGeneral" )
1127
1126
: this .$t (" ignoreTLSError" );
You can’t perform that action at this time.
0 commit comments