Android-job: Job Schedule 15 mins runs more than once and multiple times less than 15 minutes

Created on 10 Apr 2018  Â·  7Comments  Â·  Source: evernote/android-job

Hi there,

I have a question and and Issue I believe it's happening on my app, I have an app that needs tu schedule every 15 / 20 minutes a job to run pendings updates on DB. so I call the schedule method on the application and spect to run more or less every 15 minutes but it's called rare. It call more than once and sometimes in less than 15 minutes or 10 (expecting + - flex time).
this is the simple code I use to call Job Schedule and Now and then LOG with extrange behaviour.

companion object {
   const val TAG: String = "Job_SendCheckInOutJob"

    // se llama a este metodo para que se ponga programado en 15 minutos con mas menos 5 que lo
    // maneja Android segun prioridades del Sistema Operativo.
    fun scheduleJob(){
        JobRequest.Builder(TAG)
                .setPeriodic(TimeUnit.MINUTES.toMillis(15), TimeUnit.MINUTES.toMillis(5))
                .build()
                .schedule()

        Log.i("JobRun", "Job Schedule called - 15 mins at " + LocalTime())
    }

    // Se llama para correr el proceso deseado al instante (o sea en este caso si quisieramos correr
    // el checkin al instante llamaria igual, sino se eschedulea para 15 mins.
    fun startNow(){
        JobRequest.Builder(TAG)
                .startNow()
                .build()
                .schedule()

        Log.i("JobRun", "Job StartNow called" + LocalTime())
    }
}

Look that My Schedule job function is called 10:40 for first time (Bold line in log) and then it's called few times with less than time scheduled for job.
Just check log time call - Run more than once and less than expected behaviour
is this an error? o I need to customize something that it's not on my code?

LOG:

04-10 10:40:25.925 22137-22137/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:40:25.949 22137-22137/com.mobilecomputing.ventasplus I/JobRun: Job Schedule called - 15 mins at 10:40:25.935
04-10 10:40:43.960 22137-22208/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:15, interval 00:15:00, flex 00:05:00
04-10 10:40:43.962 22137-22208/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=5, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:40:44.126 22137-22209/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:40:44.131 22137-22208/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=5, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:40:44.138 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:40:44.151 22137-22208/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:40:44.158 22137-22208/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:16, interval 00:15:00, flex 00:05:00
04-10 10:40:44.158 22137-22208/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=7, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:40:44.162 22137-22209/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:40:44.166 22137-22208/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=7, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:40:44.172 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:40:44.187 22137-22208/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:47:25.594 22137-22424/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, waited 00:15:31, interval 00:15:00, flex 00:05:00
04-10 10:47:25.602 22137-22424/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=8, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:47:25.622 22137-22425/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:47:25.636 22137-22424/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=8, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:47:25.641 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:47:25.664 22137-22424/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:26.139 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:09, interval 00:15:00, flex 00:05:00
04-10 10:49:26.139 22137-22469/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=2, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:26.147 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:26.151 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=2, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:26.159 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:26.177 22137-22469/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:26.180 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:11, interval 00:15:00, flex 00:05:00
04-10 10:49:26.180 22137-22469/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=1, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:26.183 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:26.191 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=1, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:26.191 22137-22471/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:11, interval 00:15:00, flex 00:05:00
04-10 10:49:26.192 22137-22471/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=9, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:26.197 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:26.201 22137-22471/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=9, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:26.208 22137-22469/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:26.219 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:10, interval 00:15:00, flex 00:05:00
04-10 10:49:26.220 22137-22469/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=4, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:26.225 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:26.226 22137-22471/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:26.230 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=4, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:26.244 22137-22469/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:48.923 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 10:49:48.924 22137-22469/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=3, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:48.931 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:49.002 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=3, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:49.013 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:49.030 22137-22469/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:49:49.038 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 10:49:49.038 22137-22469/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=6, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:49:49.043 22137-22470/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:49.047 22137-22469/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=6, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:49:49.054 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:49:49.079 22137-22469/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:50:56.793 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:12, interval 00:15:00, flex 00:05:00
04-10 10:50:56.794 22137-22502/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=5, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:50:56.800 22137-22503/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.808 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=5, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:50:56.818 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.830 22137-22502/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:50:56.838 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:30, interval 00:15:00, flex 00:05:00
04-10 10:50:56.838 22137-22502/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=10, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:50:56.842 22137-22503/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.847 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=10, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:50:56.855 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.869 22137-22502/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:50:56.876 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:12, interval 00:15:00, flex 00:05:00
04-10 10:50:56.876 22137-22502/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=7, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:50:56.881 22137-22503/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.886 22137-22502/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=7, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:50:56.895 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:50:56.911 22137-22502/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:33.337 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:07, interval 00:15:00, flex 00:05:00
04-10 10:59:33.337 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=4, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:33.343 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.347 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=4, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:33.357 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.368 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:33.437 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:07, interval 00:15:00, flex 00:05:00
04-10 10:59:33.437 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=1, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:33.443 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.447 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=1, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:33.454 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.468 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:33.536 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:07, interval 00:15:00, flex 00:05:00
04-10 10:59:33.537 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=9, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:33.541 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.545 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=9, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:33.552 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.568 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:33.572 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, waited 00:12:07, interval 00:15:00, flex 00:05:00
04-10 10:59:33.573 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=8, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:33.577 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.581 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=8, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:33.588 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.600 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:33.608 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:07, interval 00:15:00, flex 00:05:00
04-10 10:59:33.609 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=2, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:33.613 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.616 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=2, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:33.623 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:33.635 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:54.042 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 10:59:54.042 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=3, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:54.046 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:54.117 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=3, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:54.128 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:54.140 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 10:59:54.146 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 10:59:54.147 22137-22772/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=6, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 10:59:54.151 22137-22773/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:54.155 22137-22772/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=6, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 10:59:54.161 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 10:59:54.173 22137-22772/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:01:01.853 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:01:01.853 22137-22807/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=5, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:01:01.860 22137-22808/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.868 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=5, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:01:01.880 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.891 22137-22807/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:01:01.899 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:01:01.900 22137-22807/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=7, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:01:01.911 22137-22808/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.941 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=7, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:01:01.948 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.960 22137-22807/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:01:01.965 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:01:01.965 22137-22807/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=10, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:01:01.969 22137-22808/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.973 22137-22807/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=10, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:01:01.979 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:01:01.993 22137-22807/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:37.620 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:03, interval 00:15:00, flex 00:05:00
04-10 11:09:37.620 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=2, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:37.626 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.630 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=2, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:37.637 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.653 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:37.658 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:09:37.658 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=1, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:37.662 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.666 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=1, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:37.674 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.685 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:37.818 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:09:37.819 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=9, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:37.823 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.826 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=9, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:37.834 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.849 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:37.853 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:09:37.854 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=8, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:37.857 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.871 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=8, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:37.878 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.892 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:37.897 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:09:37.897 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=4, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:37.902 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.905 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=4, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:37.911 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:37.926 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:59.154 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:09:59.155 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=3, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:59.160 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:59.166 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=3, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:59.178 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:59.187 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:09:59.193 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:09:59.193 22137-22989/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=6, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:09:59.197 22137-22990/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:59.201 22137-22989/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=6, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:09:59.210 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:09:59.220 22137-22989/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:11:06.916 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:11:06.916 22137-23040/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=5, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:11:06.923 22137-23041/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:06.931 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=5, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:11:06.940 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:06.956 22137-23040/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:11:06.966 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:11:06.966 22137-23040/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=7, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:11:06.971 22137-23041/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:06.975 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=7, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:11:06.989 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:06.994 22137-23040/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:11:07.000 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:11:07.000 22137-23040/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=10, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:11:07.004 22137-23041/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:07.010 22137-23040/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=10, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:11:07.016 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:11:07.028 22137-23040/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:19:41.966 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:19:41.966 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=1, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:19:41.971 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.044 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=1, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:19:42.054 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=1, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.071 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=1, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:19:42.152 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:19:42.152 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=8, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:19:42.157 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.162 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=8, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:19:42.169 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=8, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.185 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=8, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:19:42.328 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:19:42.328 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=2, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:19:42.332 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.337 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=2, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:19:42.351 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=2, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.370 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=2, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:19:42.487 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:19:42.487 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=4, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:19:42.493 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.499 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=4, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:19:42.506 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=4, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.526 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=4, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:19:42.536 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:19:42.536 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=9, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:19:42.542 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.547 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=9, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:19:42.555 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=9, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:19:42.573 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=9, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:20:04.199 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:20:04.199 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=6, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:20:04.205 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:20:04.270 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=6, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:20:04.279 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=6, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:20:04.288 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=6, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:20:04.296 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:20:04.296 22137-23247/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=3, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:20:04.301 22137-23248/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:20:04.306 22137-23247/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=3, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:20:04.312 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=3, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:20:04.324 22137-23247/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=3, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:21:11.982 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:04, interval 00:15:00, flex 00:05:00
04-10 11:21:11.982 22137-23276/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=10, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:21:11.989 22137-23277/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:11.996 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=10, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:21:12.007 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=10, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:12.020 22137-23276/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=10, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:21:12.029 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:21:12.029 22137-23276/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=5, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:21:12.033 22137-23277/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:12.037 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=5, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:21:12.044 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=5, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:12.060 22137-23276/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=5, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00
04-10 11:21:12.069 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Run job, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, waited 00:10:05, interval 00:15:00, flex 00:05:00
04-10 11:21:12.070 22137-23276/com.mobilecomputing.ventasplus I/JobExecutor: Executing request{id=7, tag=Job_SendCheckInOutJob, transient=false}, context PlatformJobService
04-10 11:21:12.074 22137-23277/com.mobilecomputing.ventasplus I/JobExecutor: Finished job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:12.077 22137-23276/com.mobilecomputing.ventasplus D/PlatformJobService: Finished job, request{id=7, tag=Job_SendCheckInOutJob, transient=false} SUCCESS
04-10 11:21:12.083 22137-22137/com.mobilecomputing.ventasplus D/PlatformJobService: Called onStopJob for job{id=7, finished=true, result=SUCCESS, canceled=false, periodic=true, class=SendCheckInOutJob, tag=Job_SendCheckInOutJob}
04-10 11:21:12.095 22137-23276/com.mobilecomputing.ventasplus D/JobProxy21: Schedule periodic (flex support) jobInfo success, request{id=7, tag=Job_SendCheckInOutJob, transient=false}, start 00:10:00, end 00:15:00, flex 00:05:00

question

Most helpful comment

All 7 comments

I have same problem. My onRunJob or sheduleJob performed on average every ~15 milliseconds.

4-17 16:33:20.494 : WebSocketConnectionTimer onRunJob
04-17 16:33:20.509 : WS2 - connect socket
04-17 16:33:20.648 : AUTOCOMM_PA ru.piteravto.avtocomm.network.ws.WebSocketSender$1:onConnected
04-17 16:33:20.662 : WS1 - connected - urls/messages
04-17 16:33:20.699 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:20.699 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:20.777 : WS1 - disconnected
04-17 16:33:20.831 : WebSocketConnectionTimer onRunJob
04-17 16:33:20.845 : WS1 - connect socket
04-17 16:33:20.938 : WS2 - connected - url
04-17 16:33:21.007 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.007 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.072 : WS2 - disconnected
04-17 16:33:21.106 : WebSocketConnectionTimer onRunJob
04-17 16:33:21.121 : WS2 - connect socket
04-17 16:33:21.198 : AUTOCOMM_PA ru.piteravto.avtocomm.network.ws.WebSocketSender$1:onConnected
04-17 16:33:21.220 : WS1 - connected - urls/messages
04-17 16:33:21.239 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.239 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.308 : WS1 - disconnected
04-17 16:33:21.349 : WebSocketConnectionTimer onRunJob
04-17 16:33:21.374 : WS1 - connect socket
04-17 16:33:21.482 : WS2 - connected - url
04-17 16:33:21.497 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.497 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.544 : WS2 - disconnected
04-17 16:33:21.558 : WebSocketConnectionTimer onRunJob
04-17 16:33:21.593 : WS2 - connect socket
04-17 16:33:21.630 : AUTOCOMM_PA ru.piteravto.avtocomm.network.ws.WebSocketSender$1:onConnected
04-17 16:33:21.673 : WS1 - connected - urls/messages
04-17 16:33:21.691 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.691 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.748 : WS1 - disconnected
04-17 16:33:21.760 : WebSocketConnectionTimer onRunJob
04-17 16:33:21.773 : WS1 - connect socket
04-17 16:33:21.936 : WS2 - connected - url
04-17 16:33:21.958 : hash is: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:21.958 : Запрошен firebaseID: f29OF44c_yA:APA91bF2wvqmymsSdmXqL49hVbvwQvSgyl3yYdRZYdqBV7h6Hu77XLXKxKsenMSJhZ5O3naCnrWNblnt5ASLE3CTRa44Oke_Ba0kVQO8eJDa8by5Hk2erx8hmN-hmCvpA_gFKIv_r_gi hash: d835eda5bc8b5379dcb0ddac95cb5edd9ebc93fde508268f8bf7b53ead83b519
04-17 16:33:22.048 : WS2 - disconnected
04-17 16:33:22.069 : WebSocketConnectionTimer onRunJob


04-16 19:13:34.750 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:35.251 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:35.256 : APP .util.Util:createMessageFromRemote
04-16 19:13:35.259 : *Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:35.266 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:35.269 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:35.669 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:35.680 : APP .util.Util:createMessageFromRemote
04-16 19:13:35.687 : *
Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:35.700 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:35.705 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:36.242 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:36.248 : APP .util.Util:createMessageFromRemote
04-16 19:13:36.252 : *Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:36.261 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:36.262 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:36.880 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:36.886 : APP .util.Util:createMessageFromRemote
04-16 19:13:36.890 : *
Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:36.902 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:36.911 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:36.920 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:36.925 : APP .util.Util:createMessageFromRemote
04-16 19:13:36.934 : *Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:36.955 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:36.959 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:37.667 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:37.675 : APP .util.Util:createMessageFromRemote
04-16 19:13:37.679 : *
Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:37.686 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:37.690 : APP .job.UpdateMessageJob:scheduleJob
04-16 19:13:38.177 : APP .service_and_receiver.MyFirebaseMessagingService:onMessageReceived
04-16 19:13:38.185 : APP .util.Util:createMessageFromRemote
04-16 19:13:38.189 : **Message came - action: 3392ce81-7e23-45fc-983d-2e3aada83d9a
04-16 19:13:38.199 : APP .service_and_receiver.MyFirebaseMessagingService:lambda$onMessageReceived$3$MyFirebaseMessagingService
04-16 19:13:38.203 : APP .job.UpdateMessageJob:scheduleJob

And another question. I delete the job from the application, but its code continues to run, even if I delete the application from the device!

Version in Gradle - 'com.evernote:android-job:1.1.11'. In emulator and real devices.

I'm sorry, but I don't have the time to go through such a long log. Could you please describe your issue better or provide a tiny sample app?

Hi @vRallev,

I put the explanation on first question, if you don't have time to read LOG that @OlegIvanov95 and I put in order to provide you more information, please read that issue is simple. Both put A service call to run every 15 minutes doing most simple example provided by info library on this repo, so I follow steps provided by this repo and instead of run every 15 minutes the job run more than once in less than 3 minutes, and run when it want, do not respect 15 or 20 minutes (+ - 5 minutes SO), so something happened on it.... if you want more information, maybe you have to check LOG that both put on this page. hope you can help us. #

Please provide a tiny sample. How often do you call the scheduleJob() method?

I have the same issue as such, I have a Periodic() that should run every hour & flex of 10 minutes, but I can see the task runs erratically and also multiple times in a minute.

    long interval = TimeUnit.HOURS.toMillis(1); // every HOUR
    long flex = TimeUnit.MINUTES.toMillis(10); // wait 10 MINUTES before job runs again

    return  new JobRequest.Builder(SyncTask.TAG)
            .setRequiredNetworkType(JobRequest.NetworkType.CONNECTED)
            .setPeriodic(interval , flex)
            .build()
            .schedule();

See below logging multiple runs within a few minutes (sometimes even seconds) ...

04-30 17:06:54.866 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:54.876 23278-2916/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.056 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.056 23278-2916/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.146 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.156 23278-2916/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.196 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.196 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.276 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.276 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.346 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.346 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.396 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.396 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.456 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.456 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.526 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.526 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.616 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.616 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.686 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.696 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.786 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.786 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.856 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.866 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.916 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.926 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:55.966 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:55.966 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.046 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.056 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.146 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.156 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.226 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.226 23278-2916/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.266 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.266 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.326 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.326 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.406 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.406 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.486 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.496 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.556 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.566 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.626 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.626 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.676 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.686 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.746 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.746 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.806 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.806 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.906 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.906 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:56.966 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:56.966 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.046 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.046 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.126 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.126 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.206 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.206 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.286 23278-2912/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.296 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.396 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.406 23278-2911/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.456 23278-2911/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.456 23278-2914/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.536 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.536 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.696 23278-2916/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.706 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()
04-30 17:06:57.776 23278-2914/app.sync.ordertracking E/JobCreator(): ScheduledTask().JobCreator(): running...
04-30 17:06:57.776 23278-2912/app.sync.ordertracking E/ScheduledSync():: activateScheduledSync().onRunJob().doSyncTask()

Thanks @Bennith, with .setUpdateCurrent(true) was solved. #
@OlegIvanov95 Maybe you have to add this line in your job too in order to solve the issue. Thanks again.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ruhul015 picture ruhul015  Â·  4Comments

adek picture adek  Â·  6Comments

mohamadk picture mohamadk  Â·  6Comments

anukools picture anukools  Â·  7Comments

v4-adi picture v4-adi  Â·  3Comments