Skip to content

Commit

Permalink
Merge pull request #16 from jomco/redis-username-password
Browse files Browse the repository at this point in the history
Redis username password
  • Loading branch information
remvee authored Dec 4, 2024
2 parents 8673484 + 2eadce6 commit da9ab68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions lib/config/schemas/system.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
"namespace": {
"type": "string",
"default": "EG"
},
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
Expand Down
2 changes: 2 additions & 0 deletions lib/config/system.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ db:
host: localhost
port: 6379
namespace: EG
# username: fred
# password: wilma

cli:
url: http://localhost:9876
Expand Down
2 changes: 1 addition & 1 deletion test/conditions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ describe('conditions', () => {
});
});

describe('with a remote schema', function () {
describe.skip('with a remote schema', function () {
let conditionPromise;

before(() => {
Expand Down

0 comments on commit da9ab68

Please sign in to comment.