We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ffb8b2 commit d4aedf0Copy full SHA for d4aedf0
src/redis-wrapper.js
@@ -553,9 +553,9 @@ const _getIntegrationMode = async () => {
553
554
const getIntegrationMode = async () => {
555
if (integrationMode === null) {
556
- integrationMode = await _getIntegrationMode();
+ integrationMode = _getIntegrationMode();
557
}
558
- return integrationMode;
+ return await integrationMode;
559
};
560
561
module.exports = {
0 commit comments