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
_LOGGER.warning("%s: The SDK is not ready, results may be incorrect for feature flag %s. Make sure to wait for SDK readiness before using this method", method, feature)
_LOGGER.warning("%s: The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", method, ', '.join([featureforfeatureinfeature_flags]))
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flag %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flag %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
assert_logger.call(["The SDK is not ready, results may be incorrect for feature flags %s. Make sure to wait for SDK readiness before using this method", 'some_feature'])
680
687
681
688
# Test with exception:
682
689
ready_property.return_value=True
@@ -748,6 +755,7 @@ def test_track(self, mocker):
748
755
telemetry_producer.get_telemetry_init_producer(),
749
756
mocker.Mock()
750
757
)
758
+
_logger=mocker.Mock()
751
759
752
760
destroyed_mock=mocker.PropertyMock()
753
761
destroyed_mock.return_value=False
@@ -762,6 +770,7 @@ def test_track(self, mocker):
762
770
size=1024
763
771
)
764
772
]) inevent_storage.put.mock_calls
773
+
assert_logger.call("track: the SDK is not ready, results may be incorrect. Make sure to wait for SDK readiness before using this method")
0 commit comments