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
Hi, I recently discovered that the Split SDK for Flutter throws an HTTP exception when users are connected to a VPN. I'm testing it on a Samsung Galaxy S24 Ultra with Nord VPN. No matter which server I use, the SDK always throws the same error. After disconnecting, my VPN the SDK works perfectly. Many users are experiencing this issue. I can't even handle the exception.
E/SplitSDK(22200): Error while executing my segments sync task: Network error while retrieving my segments: Error while sending data to https://sdk.split.io/api/mySegments/[myCustomerIdentifier]: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying MySegmentsSyncTask task in 4 seconds
E/SplitSDK(22200): Error while executing splits sync/update task: Network error while fetching feature flagsError while sending data to https://sdk.split.io/api/splitChanges: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying SplitsSyncTask task in 4 seconds
D/SplitSDK(22200): Push notification manager started
D/TrafficStats(22200): tagSocket(186) with statsTag=0xffffffff, statsUid=-1
V/SplitSDK(22200): Received from: https://auth.split.io/api/v2/auth?s=1.1&users=[myCustomerIdentifier]-> {"pushEnabled":true,"token":"[token]","connDelay":60}
D/SplitSDK(22200): SSE Authentication done, now parsing token
D/SplitSDK(22200): SSE token parsed successfully
E/SplitSDK(22200): Error while executing my segments sync task: Network error while retrieving my segments: Error while sending data to https://sdk.split.io/api/mySegments/[myCustomerIdentifier]: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying MySegmentsSyncTask task in 8 seconds
E/SplitSDK(22200): Error while executing splits sync/update task: Network error while fetching feature flagsError while sending data to https://sdk.split.io/api/splitChanges: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying SplitsSyncTask task in 8 seconds
D/SplitSDK(22200): SDK_READY_TIMED_OUT event triggered
E/SplitSDK(22200): Error while executing my segments sync task: Network error while retrieving my segments: Error while sending data to https://sdk.split.io/api/mySegments/[myUserIdentifier]: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying MySegmentsSyncTask task in 16 seconds
E/SplitSDK(22200): Error while executing splits sync/update task: Network error while fetching feature flagsError while sending data to https://sdk.split.io/api/splitChanges: HttpException: Something happened while retrieving data: Unable to resolve host "sdk.split.io": No address associated with hostname
D/SplitSDK(22200): Retrying SplitsSyncTask task in 16 seconds
To reproduce it, you just need to install Nord VPN and test your existing app with the Split SDK.
The text was updated successfully, but these errors were encountered:
Hi @YonatanSegura97 many VPNs now come with adblocking capabilities and unfortunately some of the lists used for this include some of our domains (sdk.split.io in this case). In such case, in order to resolve the issue you'd need to allow *.split.io through.
Hi, I recently discovered that the Split SDK for Flutter throws an HTTP exception when users are connected to a VPN. I'm testing it on a Samsung Galaxy S24 Ultra with Nord VPN. No matter which server I use, the SDK always throws the same error. After disconnecting, my VPN the SDK works perfectly. Many users are experiencing this issue. I can't even handle the exception.
We're using
splitio: ^0.1.9
Here is my implementation:
And the error is:
To reproduce it, you just need to install Nord VPN and test your existing app with the Split SDK.
The text was updated successfully, but these errors were encountered: