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
The interesting part about this is, that we ignore the exit code of the sync client, see line 4:
foriinrange(n):
t0=datetime.datetime.now()
cmd=config.oc_sync_cmd+' '+local_folder+' '+oc_webdav_url('owncloud',remote_folder,user_num) +" >> "+config.rundir+"/%s-ocsync.step%02d.cnt%03d.log 2>&1"%(reflection.getProcessName(),current_step,ocsync_cnt[current_step])
runcmd(cmd, ignore_exitcode=True) # exitcode of ocsync is not reliablelogger.info('sync cmd is: %s',cmd)
logger.info('sync finished: %s',datetime.datetime.now()-t0)
ocsync_cnt[current_step]+=1
I can not reproduce any failures using 1.8.1 testclient and current master.
@DeepDiver1975 would be nice, if we can run the tests using --debug so the logger.info() stuff is displayed in the console output. In this case especially the information about:
logger.info('sync cmd is: %s',cmd)
logger.info('sync finished: %s',datetime.datetime.now()-t0)
would be nice.
The text was updated successfully, but these errors were encountered:
https://ci.owncloud.org/job/smashbox/17
The interesting part about this is, that we ignore the exit code of the sync client, see line 4:
I can not reproduce any failures using 1.8.1 testclient and current master.
@DeepDiver1975 would be nice, if we can run the tests using
--debug
so thelogger.info()
stuff is displayed in the console output. In this case especially the information about:would be nice.
The text was updated successfully, but these errors were encountered: