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
Is your feature request related to a problem? Please describe.
When using the Stockpile to sync data, a new URLSession is created for each sync operation.
However URLSessions should be retained to allow system optimizations like caching.
Describe the solution you'd like
Retain the URLSession for sync operations.
Affected Component
Stockpile
Additional context
Do not forget the SyncPushEngine
There are at least two different URLSeessionConfigurations: waitingDefault and nonExpensive
It might be worth considering to configure the individual requests instead of using different session configurations
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When using the Stockpile to sync data, a new
URLSession
is created for each sync operation.However
URLSession
s should be retained to allow system optimizations like caching.Describe the solution you'd like
Retain the
URLSession
for sync operations.Affected Component
Stockpile
Additional context
SyncPushEngine
URLSeessionConfiguration
s:waitingDefault
andnonExpensive
The text was updated successfully, but these errors were encountered: