Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release] 1.32.0 - Manually Sync Config Spec (#397)
### New Features - New api `syncConfigSpecs` allows users to manually trigger the synchronization of config specs in cases where the initial SDK initialization has failed and you want to retry. Return Type: `CompletableFuture<ConfigSyncDetails>` Example usage: ``` CompletableFuture<ConfigSyncDetails> future = Statsig.syncConfigSpecs(); ConfigSyncDetails configSyncDetails = future.get(); configSyncDetails.getDuration(); configSyncDetails.getConfigSpecReady(); configSyncDetails.getFailureDetails(); configSyncDetails.getLcut(); ``` >Included In This Release >- f3fb46a Weihao Ding > - refac: modify configSyncDetails (#396) >- f576480 Weihao Ding > - feat: re-init / manual sync config specs (#394)
- Loading branch information