Skip to content

Commit

Permalink
Comment out sending of the effect tree for now. (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmevans9 authored and skellock committed May 10, 2017
1 parent 833241a commit 783a4ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/reactotron-redux-saga/src/saga-monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default (reactotron, options) => {
effects[effectId] = effectInfo

// send it
sendReactotronEffectTree()
//sendReactotronEffectTree()
}

// ---------------- Finishing ----------------------------
Expand Down Expand Up @@ -145,7 +145,7 @@ export default (reactotron, options) => {
children
})

effects = omit(map(String, pluck('effectId', children)), effects)
//effects = omit(map(String, pluck('effectId', children)), effects)
}

// redux-saga calls this when an effect is resolved (successfully or not)
Expand Down Expand Up @@ -188,7 +188,7 @@ export default (reactotron, options) => {
}

// send it
sendReactotronEffectTree()
//sendReactotronEffectTree()
}

// flags on of the children as the winner
Expand Down Expand Up @@ -218,7 +218,7 @@ export default (reactotron, options) => {
}

// send it
sendReactotronEffectTree()
//sendReactotronEffectTree()
}

// ---------------- Cancelling ---------------------------
Expand All @@ -230,7 +230,7 @@ export default (reactotron, options) => {
effectInfo.status = CANCELLED

// send it
sendReactotronEffectTree()
//sendReactotronEffectTree()
}

// the interface for becoming a redux-saga monitor
Expand Down

0 comments on commit 783a4ae

Please sign in to comment.