You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like #141 introduced a configurable option for the flag polling interval with the intention that it would fall back to the default of 5 minutes if the option was not explicitly set. However after upgrading, I'm seeing that if I don't explicitly configure the new flagConfigPollingIntervalMillis option, then our app sends an infinite, rapid amount of polling requests without any timeout in between.
Looking through the PR, the interval value is computed and saved to the ExperimentClient config here, but the value passed to the poller here is actually the un-computed value from the config object passed to the constructor. So presumably the following change would work, if I'm following correctly:
Hi there,
It looks like #141 introduced a configurable option for the flag polling interval with the intention that it would fall back to the default of 5 minutes if the option was not explicitly set. However after upgrading, I'm seeing that if I don't explicitly configure the new
flagConfigPollingIntervalMillis
option, then our app sends an infinite, rapid amount of polling requests without any timeout in between.Looking through the PR, the interval value is computed and saved to the
ExperimentClient
config here, but the value passed to the poller here is actually the un-computed value from theconfig
object passed to the constructor. So presumably the following change would work, if I'm following correctly:Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: