Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
eDrive
Commits
0cb224d1
Commit
0cb224d1
authored
Jul 20, 2020
by
Arnau Vàzquez
Browse files
Merge branch '114-issue-n' into 'v1-nougat'
Resolve "reduce eDrive polling" Closes #114 See merge request e/apps/eDrive!36
parents
082f2e09
dd006b36
Pipeline
#63724
passed with stage
in 2 minutes and 56 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
0cb224d1
...
...
@@ -4,6 +4,7 @@
/.idea/workspace.xml
/.idea/libraries
/.idea/codeStyles/
.idea
.DS_Store
/build
/captures
...
...
app/src/main/java/foundation/e/drive/operations/ListFileRemoteOperation.java
View file @
0cb224d1
...
...
@@ -155,6 +155,11 @@ public class ListFileRemoteOperation extends RemoteOperation {
Log
.
w
(
TAG
,
"LightReadFolderRemoteOperation failed : http "
+
result
.
getHttpCode
()
+
", "
+
result
.
getLogMessage
()+
" => Ignored"
);
}
try
{
Thread
.
sleep
(
150
);
}
catch
(
InterruptedException
e
){
Log
.
w
(
TAG
,
"listFileRemoteOperation's sleep had been interrupted"
);
}
}
//End of loop
finalResult
=
new
RemoteOperationResult
(
RemoteOperationResult
.
ResultCode
.
OK
);
...
...
app/src/main/java/foundation/e/drive/services/ObserverService.java
View file @
0cb224d1
...
...
@@ -60,7 +60,7 @@ import foundation.e.drive.utils.ServiceExceptionHandler;
*/
public
class
ObserverService
extends
Service
implements
OnRemoteOperationListener
{
private
final
static
String
TAG
=
ObserverService
.
class
.
getSimpleName
();
private
final
static
int
INTERSYNC_MINIMUM_DELAY
=
3
00000
;
// min delay between two sync in ms.
private
final
static
int
INTERSYNC_MINIMUM_DELAY
=
9
00000
;
// min delay between two sync in ms.
private
List
<
SyncedFolder
>
mSyncedFolders
;
//List of synced folder
private
boolean
isWorking
=
false
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment