Compare commits
3 Commits
v1.0.3
...
97ac9b0c4b
Author | SHA1 | Date | |
---|---|---|---|
97ac9b0c4b | |||
a219bc672b | |||
43b21ad0a9 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ node_modules/*
|
|||||||
target/*
|
target/*
|
||||||
|
|
||||||
|
|
||||||
|
/target/
|
||||||
|
@ -34,6 +34,16 @@ class RedisLookupAdapterSummary extends React.Component {
|
|||||||
<dl>
|
<dl>
|
||||||
<dt>Redis host</dt>
|
<dt>Redis host</dt>
|
||||||
<dd>{config.redis_host || 'n/a'}</dd>
|
<dd>{config.redis_host || 'n/a'}</dd>
|
||||||
|
<dt>Redis port</dt>
|
||||||
|
<dd>{config.redis_port || 'n/a'}</dd>
|
||||||
|
<dt>Redis database</dt>
|
||||||
|
<dd>{config.redis_database}</dd>
|
||||||
|
<dt>Redis key TTL</dt>
|
||||||
|
<dd>{config.redis_ttl || 'n/a'}</dd>
|
||||||
|
<dt>Redis username</dt>
|
||||||
|
<dd>{config.redis_username || 'n/a'}</dd>
|
||||||
|
<dt>Redis password</dt>
|
||||||
|
<dd>******</dd>
|
||||||
</dl>
|
</dl>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user