1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

Send client user-agent during connection, via CLIENT SETINFO (#2645)

* Add SETINFO support to client connection, with the ability to disable sending the user agent if the end user desires.  * Also enables modifying the user-agent with a tag to enable distinguishing different usages.
This commit is contained in:
Shaya Potter
2023-11-07 14:43:20 +02:00
committed by GitHub
parent c64ce74383
commit a8b81bdd01
6 changed files with 90 additions and 5 deletions

View File

@@ -4,7 +4,8 @@ import { promiseTimeout } from './utils';
const utils = new TestUtils({
dockerImageName: 'redis',
dockerImageVersionArgument: 'redis-version'
dockerImageVersionArgument: 'redis-version',
defaultDockerVersion: '7.2'
});
export default utils;