-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature/configurable-poll-interval] Configurable poll interval #1021
Conversation
…L rather than NSString
… MDM, through SDK update
|
…rrors - add debug option to Xcode scheme
QATested with different intervals using the testing advice mentioned above
i saw the log:
and the polling time is 10secs, by default. here comes my question: if user sets 3secs, shouldn't be better to give him 5secs (minimum) instead of 10secs (default), so 5 is closer to the 3 he wanted?? @felix-schwarz @michaelstingl
|
OTOH, i realised that every both requests ask for the same properties
|
Since the unit changed from seconds to milliseconds, the idea here is that the unit of any value below The iOS implementation mirrors the desktop implementation in that regard.
If you have client-side logging turned on, too: any chance this is sent - independently - by File Provider and app? |
👍 ok, thanks for the explanation. Will go with the approach.
sounds like an option, i will check. This is not a blocker here, so, i will do separately Approved. |
# Conflicts: # ios-sdk # ownCloud.xcodeproj/xcshareddata/xcschemes/ownCloud.xcscheme
Description
Add support for configurable poll interval via capabilities.php and MDM:
core.scan-for-changes-interval
Related Issue
owncloud/client#8777
Testing advice
Changing the return value of OCCapabilities.m:165, has the same effect as changing the poll interval number on the server. F.ex. for 5000 milliseconds:
Types of changes