woonplan-packages-redishelper 1.0.65 → 1.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -2
- package/index.ts +0 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -111,8 +111,6 @@ var listenForMessage = function (client, groupname, channelname, consumername, c
|
|
|
111
111
|
client.xack(channelname, groupname, id).then(function () {
|
|
112
112
|
console.log(id + ' acknowledged');
|
|
113
113
|
});
|
|
114
|
-
// in case somebody was subscribed to the response;
|
|
115
|
-
(0, setters_1.publishMessageResponse)(client, id, '');
|
|
116
114
|
// relisten
|
|
117
115
|
listenForMessage(client, groupname, channelname, consumername, callback);
|
|
118
116
|
});
|
package/index.ts
CHANGED
|
@@ -137,10 +137,6 @@ const listenForMessage = ( client:Redis, groupname:string, channelname:string, c
|
|
|
137
137
|
client.xack( channelname, groupname, id ).then( () => {
|
|
138
138
|
console.log( id + ' acknowledged')
|
|
139
139
|
})
|
|
140
|
-
|
|
141
|
-
// in case somebody was subscribed to the response;
|
|
142
|
-
publishMessageResponse( client, id, '' );
|
|
143
|
-
|
|
144
140
|
// relisten
|
|
145
141
|
listenForMessage( client, groupname, channelname, consumername, callback );
|
|
146
142
|
})
|