Skip to content

Commit

Permalink
[hooks] commenting out incoming data hook due to concurrency issues w…
Browse files Browse the repository at this point in the history
…ith drill plugin
  • Loading branch information
ar2rsawseen committed Nov 29, 2021
1 parent 4129394 commit 83c8cb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/hooks/api/parts/triggers/incoming_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ class IncomingDataTrigger {
*/
register() {
InternalEvents.forEach((e) => {
plugins.register(e, (obj) => {
const ob = Object.assign({}, obj);
plugins.register(e, (/*obj*/) => {
/*const ob = JSON.parse(JSON.stringify(obj));
console.log(e, ob, "?##33333433");
if (e === '/plugins/drill') {
const hooksData = {
Expand All @@ -80,7 +80,7 @@ class IncomingDataTrigger {
this.process(e, hooksData);
return;
}
this.process(e, ob);
this.process(e, ob);*/
});
});
}
Expand Down

0 comments on commit 83c8cb3

Please sign in to comment.