Skip to content

Commit

Permalink
add missing function export in connectionWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
sseide committed Jun 13, 2023
1 parent 395dcf8 commit 5cedaf4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ _Remark: new version are not published to Dockerhub right now._
# Features

Web-UI to display and edit data within multiple different Redis servers.
It can connect to Redis standalone server, Sentinel based setups and Redis Cluster.

It has support for the following data types to view, add, update and delete data:
* Strings
Expand Down
1 change: 1 addition & 0 deletions lib/connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,5 +378,6 @@ module.exports = {
setConnectionList: setConnectionList,
findConnection: findConnection,
containsConnection: containsConnection,
replaceConnection: replaceConnection,
ConnectionWrapper: ConnectionWrapper
};
1 change: 0 additions & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ let crypto = require('crypto');
const prepareIoredis = require('../lib/ioredis-stream.js');
prepareIoredis();
let Redis = require('ioredis');
const c = require("config");

function split(str) {
let results = [];
Expand Down

0 comments on commit 5cedaf4

Please sign in to comment.