Quick question about `trackingCallback` - if I cal...
# ask-questions
d
Quick question about
trackingCallback
- if I call
growthbook.feature
and it ends up making a call to
trackingCallback
, is there any concern of my process that called
growthbook.feature
ending before the callbacks are completed? Is there any need to
await
the callback and is there a mechanism to do so?
f
What environment is this in? Server side?
There's nothing built in to await callbacks. You could maintain a record yourself outside of GrowthBook of which calls were fired and which ones completed.
d
Yep, server side.