|
@@ -66,7 +66,7 @@ async function redis_get(key) {
|
|
|
function readRedis(key) {
|
|
|
return new Promise((resolve) => {
|
|
|
redis_get(key).then(result => {
|
|
|
- // console.log("redis_get=", JSON.parse(result)); // Prints "value"
|
|
|
+ console.log("redis_get=", result); // Prints "value"
|
|
|
resolve(result);
|
|
|
});
|
|
|
})
|