redis-manager-utils
Advanced tools
Comparing version 1.0.14 to 1.0.15
@@ -455,3 +455,3 @@ const REDIS = require("redis"); | ||
let next_index = await that.keyGet( wKey + ".INDEX" ); | ||
console.log( "nextInCircularList() --> Starting Index === " + previous_index.toString() ); | ||
console.log( "nextInCircularList() --> Starting Index === " + next_index.toString() ); | ||
if ( !next_index ) { next_index = 0; } | ||
@@ -465,6 +465,6 @@ else { | ||
console.log( "Recycling to Beginning of List" ); | ||
console.log( "previousInCircularList() --> " + "Recycling to End of List" ); | ||
console.log( "nextInCircularList() --> " + "Recycling to End of List" ); | ||
await that.keySet( wKey + ".INDEX" , next_index ); | ||
} | ||
console.log( "previousInCircularList() --> Ending Index === " + next_index.toString() ); | ||
console.log( "nextInCircularList() --> Ending Index === " + next_index.toString() ); | ||
const next_in_circle = await that.listGetByIndex( wKey , next_index ); | ||
@@ -471,0 +471,0 @@ resolve( [ next_in_circle , next_index ] ); |
{ | ||
"name": "redis-manager-utils", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19180