abraunegg / onedrive

OneDrive Client for Linux
https://abraunegg.github.io
GNU General Public License v3.0
9.92k stars 858 forks source link

Item not found exception when unable to query OneDrive 'root' for changes #335

Closed evandroamaro closed 5 years ago

evandroamaro commented 5 years ago

Bug Report Details

A single run out of onedrive v2.2.4-21-gd527b7e is throwing a number of exceptions related to a "Item does not Exist".

Application and Operating System Details:

To Reproduce Steps to reproduce the behavior if not causing an application crash:

  1. Execute 'onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --enable-logging --verbose'
  2. See errors on console as following

Complete Verbose Log Output $>onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --enable-logging --verbose

Loading config ...
Using Config Dir: /backups/home/design/.config/onedrive
Using logfile dir: /backups/home/design/
Initializing the OneDrive API ...
Opening the item database ...
All operations will be performed in: /backups/home/design/OneDrive
Initializing the Synchronization Engine ...
Account Type: personal
Default Drive ID: 73621e8821877b39
Default Root ID: 73621E8821877B39!101
Remaining Free Space: 5368709086
Fetching details for OneDrive Root
OneDrive Root exists in the database
Syncing changes from OneDrive ...
Applying changes of Path ID: 73621E8821877B39!101
Trying to delete item testeopersonal/newFile2.txt
Deleting item testeopersonal/newFile2.txt
Applying changes of Path ID: 7EF2789E900D35F3!105
Retry sync count: 1: HTTP request returned status code 404 (Not Found)
{
    "error": {
        "code": "itemNotFound",
        "innerError": {
            "date": "2019-01-08T11:28:26",
            "request-id": "f234cc43-a590-4278-8157-14e64e733f19"
        },
        "message": "Item does not exist"
    }
}
Syncing changes from OneDrive ...
Applying changes of Path ID: 73621E8821877B39!101
Applying changes of Path ID: 7EF2789E900D35F3!105
Retry sync count: 2: HTTP request returned status code 404 (Not Found)
{
    "error": {
        "code": "itemNotFound",
        "innerError": {
            "date": "2019-01-08T11:28:28",
            "request-id": "9dac3357-2ed4-4877-bcbf-656d2fa448d9"
        },
        "message": "Item does not exist"
    }
}
Syncing changes from OneDrive ...
Applying changes of Path ID: 73621E8821877B39!101
Applying changes of Path ID: 7EF2789E900D35F3!105
Giving up on sync after three attempts: HTTP request returned status code 404 (Not Found)
{
    "error": {
        "code": "itemNotFound",
        "innerError": {
            "date": "2019-01-08T11:28:29",
            "request-id": "d555a83e-be11-4a95-a8cc-8895d5ea2cb0"
        },
        "message": "Item does not exist"
    }
}
onedrive.OneDriveException@src/onedrive.d(713): HTTP request returned status code 404 (Not Found)
{
    "error": {
        "code": "itemNotFound",
        "innerError": {
            "date": "2019-01-08T11:28:29",
            "request-id": "d555a83e-be11-4a95-a8cc-8895d5ea2cb0"
        },
        "message": "Item does not exist"
    }
}
----------------
src/onedrive.d:48 void onedrive.OneDriveApi.checkHttpCode(ref const(std.json.JSONValue)) [0x942c46bd]
src/onedrive.d:393 std.json.JSONValue onedrive.OneDriveApi.get(const(char)[], bool) [0x942c3817]
src/onedrive.d:170 std.json.JSONValue onedrive.OneDriveApi.viewChangesById(const(char)[], const(char)[], const(char)[]) [0x942c22de]
src/sync.d:522 void sync.SyncEngine.applyDifferences(immutable(char)[], const(char)[]) [0x942cef1d]
src/sync.d:299 void sync.SyncEngine.applyDifferences() [0x942ce2e7]
src/main.d:657 void main.performSync(sync.SyncEngine, immutable(char)[], bool, bool, bool) [0x942ac527]
src/main.d:482 _Dmain [0x942abb70]

Bug Report Checklist

abraunegg commented 5 years ago

@evandroamaro Can you please generate a debug log as per https://github.com/abraunegg/onedrive/wiki/Generate-debug-log-for-support & email to support@mynas.com.au

In the meantime, please can you:

Will attempt to also replicate this locally.

abraunegg commented 5 years ago

@evandroamaro Unable to reproduce this:

  1. Delete local file -> file gets deleted on OneDrive
  2. Delete file from OneDrive -> file gets deleted locally
  3. Remove file from shared folder -> file gets deleted locally
  4. Delete file locally from shared folder -> file gets deleted on OneDrive
  5. Rename local file as same name as deleted file on OneDrive -> file gets handled correctly
abraunegg commented 5 years ago

@evandroamaro I have been able to force the reproduction of this, will work on a fix shortly.

abraunegg commented 5 years ago

@evandroamaro Please can you test the following PR:

git clone https://github.com/abraunegg/onedrive.git
cd onedrive
git fetch origin pull/336/head:pr336
git checkout pr336
make

If there is an issue with querying OneDrive, the response should now be handled correctly with information on how to resolve the situation:

./onedrive --confdir '~/.config/onedrive-personal' --synchronize --verbose 
Loading config ...
Using Config Dir: /home/alex/.config/onedrive-personal
No config file found, using application defaults
Initializing the OneDrive API ...
Opening the item database ...
All operations will be performed in: /home/alex/OneDrive
Initializing the Synchronization Engine ...
Account Type: personal
Default Drive ID: 66d53be8a5056eca
Default Root ID: 66D53BE8A5056ECA!101
Remaining Free Space: 5368709107
Fetching details for OneDrive Root
OneDrive Root exists in the database
Syncing changes from OneDrive ...
Applying changes of Path ID: 66D53BE8A5056ECA!101

OneDrive returned an error with the following message:

Error Message: HTTP request returned status code 400 (Bad Request)
Error Reason: Resource not found for the segment 'delta'.

Remove your 'items.sqlite3' file and try to sync again

Uploading differences of .
Processing root
The directory has not changed
Processing file.txt
The file has not changed
Uploading new items of .
Applying changes of Path ID: 66D53BE8A5056ECA!101

OneDrive returned an error with the following message:

Error Message: HTTP request returned status code 400 (Bad Request)
Error Reason: Resource not found for the segment 'delta'.

Remove your 'items.sqlite3' file and try to sync again
evandroamaro commented 5 years ago

Downloaded the versio PR336 onedrive v2.2.4-23-gba28617

Indeed the first execution of onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --enable-logging --verbose --force-http-1.1

2019-Jan-09 10:50:37.8374449 Initializing the OneDrive API ...
2019-Jan-09 10:50:38.3082039 Opening the item database ...
2019-Jan-09 10:50:38.3934874 All operations will be performed in: /backups/home/design/OneDrive
2019-Jan-09 10:50:38.393685 Initializing the Synchronization Engine ...
2019-Jan-09 10:50:40.5273646 Account Type: personal
2019-Jan-09 10:50:40.5274665 Default Drive ID: 73621e8821877b39
2019-Jan-09 10:50:40.5275015 Default Root ID: 73621E8821877B39!101
2019-Jan-09 10:50:40.5275361 Remaining Free Space: 5368709086
2019-Jan-09 10:50:40.5275836 Fetching details for OneDrive Root
2019-Jan-09 10:50:41.0850185 OneDrive Root exists in the database
2019-Jan-09 10:50:41.0851521 Syncing changes from OneDrive ...
2019-Jan-09 10:50:41.0851924 Applying changes of Path ID: 73621E8821877B39!101
2019-Jan-09 10:50:42.7249288 Applying changes of Path ID: 7EF2789E900D35F3!105
2019-Jan-09 10:50:43.7079552 

OneDrive returned a 'HTTP 404 - Item not found'
2019-Jan-09 10:50:43.7082888 The item id to query was not found on OneDrive
2019-Jan-09 10:50:43.7083738 
Remove your '/backups/home/design/.config/onedrive/items.sqlite3' file and try to sync again

2019-Jan-09 10:50:43.7084332 Applying changes of Path ID: 7EF2789E900D35F3!2636
2019-Jan-09 10:50:44.8774402 

OneDrive returned a 'HTTP 404 - Item not found'
2019-Jan-09 10:50:44.8775644 The item id to query was not found on OneDrive
2019-Jan-09 10:50:44.8776037 
Remove your '/backups/home/design/.config/onedrive/items.sqlite3' file and try to sync again

2019-Jan-09 10:50:44.8776391 Uploading differences of .
2019-Jan-09 10:50:44.8783813 Processing root
2019-Jan-09 10:50:44.879062 The directory has not changed
2019-Jan-09 10:50:44.879743 Processing DESIGN _ PORTUGAL
2019-Jan-09 10:50:44.8807657 The directory has not changed
2019-Jan-09 10:50:44.8812018 Processing DESIGN _ PORTUGAL
2019-Jan-09 10:50:44.8819743 The directory has not changed
(...)
2019-Jan-09 10:52:45.3342932 The directory has not changed
2019-Jan-09 10:52:45.3517396 Processing ESPECIFICAÇÕES.txt
2019-Jan-09 10:52:45.3523672 The file has not changed
2019-Jan-09 10:52:45.3524155 Processing PB_BR_PressRelease.dot
2019-Jan-09 10:52:45.3527571 The file has not changed
2019-Jan-09 10:52:45.3528031 Processing testeopersonal
2019-Jan-09 10:52:45.3530707 The directory has not changed
2019-Jan-09 10:52:45.353219 Processing justAFile.txt
2019-Jan-09 10:52:45.3534986 The file has not changed
2019-Jan-09 10:52:45.3535433 Processing newFile1.txt
2019-Jan-09 10:52:45.35381 The file has not changed
2019-Jan-09 10:52:45.3538536 Uploading new items of .
2019-Jan-09 10:53:27.3530265 Applying changes of Path ID: 73621E8821877B39!101
2019-Jan-09 10:53:28.1538987 Applying changes of Path ID: 7EF2789E900D35F3!105
2019-Jan-09 10:53:28.7611868 

OneDrive returned a 'HTTP 404 - Item not found'
2019-Jan-09 10:53:28.7613163 The item id to query was not found on OneDrive
2019-Jan-09 10:53:28.7613566 
Remove your '/backups/home/design/.config/onedrive/items.sqlite3' file and try to sync again

2019-Jan-09 10:53:28.7613924 Applying changes of Path ID: 7EF2789E900D35F3!2636
2019-Jan-09 10:53:29.8924644 

OneDrive returned a 'HTTP 404 - Item not found'
2019-Jan-09 10:53:29.8926015 The item id to query was not found on OneDrive
2019-Jan-09 10:53:29.8927838 
Remove your '/backups/home/design/.config/onedrive/items.sqlite3' file and try to sync again
evandroamaro commented 5 years ago

Then I deleted items.sqlite3 and did onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --download-only --enable-logging --verbose --force-http-1.1 --resync

2019-Jan-09 10:54:31.4472657 Deleting the saved status ...
2019-Jan-09 10:54:31.4527205 Initializing the OneDrive API ...
2019-Jan-09 10:54:37.2454148 Opening the item database ...
2019-Jan-09 10:54:37.7434625 All operations will be performed in: /backups/home/design/OneDrive
2019-Jan-09 10:54:37.7438285 Initializing the Synchronization Engine ...
2019-Jan-09 10:54:39.5508074 Account Type: personal
2019-Jan-09 10:54:39.5509292 Default Drive ID: 73621e8821877b39
2019-Jan-09 10:54:39.5509803 Default Root ID: 73621E8821877B39!101
2019-Jan-09 10:54:39.551039 Remaining Free Space: 5368709086
2019-Jan-09 10:54:39.5510822 Fetching details for OneDrive Root
2019-Jan-09 10:54:40.102167 OneDrive Root does not exist in the database. We need to add it.
2019-Jan-09 10:54:40.1495809 Added OneDrive Root to the local database
2019-Jan-09 10:54:40.1496887 Syncing changes from OneDrive ...
2019-Jan-09 10:54:40.1497235 Applying changes of Path ID: 73621E8821877B39!101
2019-Jan-09 10:54:41.6708584 Applying changes of Path ID: 7EF2789E900D35F3!105
2019-Jan-09 10:58:34.4133264 Creating directory: DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL
2019-Jan-09 10:58:34.8098857 Creating directory: DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/POSTERS
2019-Jan-09 10:58:34.9208407 Creating directory: DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/SOCIAL MEDIA
2019-Jan-09 10:58:35.1010259 Creating directory: DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/VOUCHERS
2019-Jan-09 10:58:35.2296331 Creating directory: DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/ASSINATURA MAIL
2019-Jan-09 10:58:36.9338913 Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/ASSINATURA MAIL/PBRJ_Carnaval19_AssinaturaMail.jpg ... done.
2019-Jan-09 10:58:37.6248729 Applying changes of Path ID: 7EF2789E900D35F3!2636
2019-Jan-09 11:02:28.1058826 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT
2019-Jan-09 11:02:28.645001 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT
2019-Jan-09 11:02:38.2490753 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO
2019-Jan-09 11:02:38.3265985 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO
2019-Jan-09 11:02:42.5700328 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/VECTORIAL
2019-Jan-09 11:02:42.6032079 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/VECTORIAL
2019-Jan-09 11:02:46.4668612 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/VECTORIAL/PBF_Buzios_logo.pdf ... done.
2019-Jan-09 11:02:47.8623205 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/VECTORIAL/PBF_Madeira_logo.pdf ... done.
2019-Jan-09 11:11:13.3669584 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018
2019-Jan-09 11:11:22.569647 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN
2019-Jan-09 11:11:25.0062247 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/RESERVAS
2019-Jan-09 11:11:27.3096093 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/RESERVAS/PB_promo_JUN_reservas_simulacao.pdf ... done.
2019-Jan-09 11:11:55.0619632 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT
2019-Jan-09 11:11:59.7374278 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO
2019-Jan-09 11:12:02.6203838 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/VECTORIAL
2019-Jan-09 11:12:04.0373728 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/VECTORIAL/PBF_Falesia_logo.pdf ... done.
2019-Jan-09 11:16:32.4317687 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR
2019-Jan-09 11:16:32.6981491 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV
2019-Jan-09 11:16:36.5286339 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/FACEBOOK
2019-Jan-09 11:16:36.6336383 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE
2019-Jan-09 11:16:38.4826828 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/PB_promo_ABR_enews_EN.jpg ... done.
2019-Jan-09 11:16:39.9292785 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/PB_promo_ABR_enews_FR.jpg ... done.
2019-Jan-09 11:16:41.0743507 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/PB_promo_ABR_enews_DE.jpg ... done.
2019-Jan-09 11:16:42.8340642 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/PB_promo_ABR_enews_PT.jpg ... done.
2019-Jan-09 11:16:42.8753417 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/SITE
2019-Jan-09 11:16:44.3362137 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/PB_enews_promocional_Fev18_destaque_EN.jpg ... done.
2019-Jan-09 11:16:45.2220468 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/PB_enews_promocional_Fev18_destaque_FR.jpg ... done.
2019-Jan-09 11:16:46.1936582 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/PB_enews_promocional_Fev18_destaque_DE.jpg ... done.
2019-Jan-09 11:16:47.4466893 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/PB_enews_promocional_Fev18_destaque_PT.jpg ... done.
2019-Jan-09 11:16:48.3426373 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/PB_enews_promocional_FEV2018_facebook.jpg ... done.
2019-Jan-09 11:16:49.2101635 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/PB_enews_promocional_JUN_destaque_EN.jpg ... done.
2019-Jan-09 11:16:50.1503578 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/PB_enews_promocional_JUN_destaque_DE.jpg ... done.
2019-Jan-09 11:16:51.5559105 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/PB_enews_promocional_JUN_destaque_FR.jpg ... done.
2019-Jan-09 11:16:52.7337576 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/PB_enews_promocional_JUN_destaque_PT.jpg ... done.
2019-Jan-09 11:16:52.8617383 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/SITE
2019-Jan-09 11:16:52.9790047 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/FACEBOOK
2019-Jan-09 11:16:54.1400375 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/FACEBOOK/PB_promo_ABR_facebook_DE.jpg ... done.
2019-Jan-09 11:16:55.1163255 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/FACEBOOK/PB_promo_ABR_facebook_EN.jpg ... done.
2019-Jan-09 11:16:56.1718782 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/FACEBOOK/PB_promo_ABR_facebook_FR.jpg ... done.
2019-Jan-09 11:16:57.2066149 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/FACEBOOK/PB_promo_ABR_facebook_PT.jpg ... done.
2019-Jan-09 11:16:59.5729527 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE/PB_promo_ABR_site_DE.jpg ... done.
2019-Jan-09 11:17:00.4891491 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE/PB_promo_ABR_site_FR.jpg ... done.
2019-Jan-09 11:17:01.5112079 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE/PB_promo_ABR_site_EN.jpg ... done.
2019-Jan-09 11:17:02.2812058 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE/PB_promo_ABR_site_PT.jpg ... done.
2019-Jan-09 11:17:03.5182773 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/ABR/SITE/PB_promo_ABR_destaque_site.jpg ... done.
2019-Jan-09 11:17:04.293358 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/SITE/PB_enews_promocional_site2.jpg ... done.
2019-Jan-09 11:17:05.6124675 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/SITE/PB_enews_promocional_site3.jpg ... done.
2019-Jan-09 11:17:06.8576615 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/FEV/SITE/PB_enews_promocional_site.jpg ... done.
2019-Jan-09 11:17:07.8270607 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/SITE/PB_promo_JUN_site_EN.jpg ... done.
2019-Jan-09 11:17:09.0226522 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/SITE/PB_promo_JUN_destaque_site.jpg ... done.
2019-Jan-09 11:17:09.9551439 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/FACEBOOK/PB_promo_JUN_facebook_EN.jpg ... done.
2019-Jan-09 11:17:10.8194746 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/FACEBOOK/PB_promo_JUN_facebook_PT.jpg ... done.
2019-Jan-09 11:17:11.7603632 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/JUN/RESERVAS/PB_promo_JUN_reservas.jpg ... done.
2019-Jan-09 11:18:07.9080878 Creating directory: DESIGN _ PORTUGAL/HOTEIS/GERAL/02 _ SÓ 5 EST/00 _ TODOS 5 EST/LAVANDARIA
2019-Jan-09 11:18:18.4573737 Downloading file DESIGN _ PORTUGAL/HOTEIS/GERAL/02 _ SÓ 5 EST/00 _ TODOS 5 EST/LAVANDARIA/FichaTécnica.txt ... done.
2019-Jan-09 11:29:10.6346961 Retry sync count: 1: Timeout was reached on handle 56240702B340
2019-Jan-09 11:29:10.6896251 Syncing changes from OneDrive ...
2019-Jan-09 11:29:10.6897249 Applying changes of Path ID: 73621E8821877B39!101
2019-Jan-09 11:29:12.6280989 Applying changes of Path ID: 7EF2789E900D35F3!105
2019-Jan-09 11:29:14.4839017 Applying changes of Path ID: 7EF2789E900D35F3!2636
2019-Jan-09 11:36:38.8206941 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV
2019-Jan-09 11:36:41.3128932 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/FACEBOOK
2019-Jan-09 11:36:42.3059589 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_enews_promocional_NOV_destaque_DE.jpg ... done.
2019-Jan-09 11:36:44.6617287 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/FACEBOOK/PB_promo_NOV_facebook_PT.jpg ... done.
2019-Jan-09 11:36:45.555322 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/FACEBOOK/PB_promo_NOV_facebook_EN.jpg ... done.
2019-Jan-09 11:37:04.0479214 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_enews_promocional_NOV_destaque_EN.jpg ... done.
2019-Jan-09 11:37:04.9872941 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_enews_promocional_NOV_destaque_FR.jpg ... done.
2019-Jan-09 11:37:06.3914062 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_enews_promocional_NOV_destaque_PT.jpg ... done.
2019-Jan-09 11:37:07.4366156 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_enews_promocional_NOV_Site.jpg ... done.
2019-Jan-09 11:37:08.404872 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2018/NOV/PB_promo_NOV_Instagram_EN.jpg ... done.
2019-Jan-09 11:39:19.7841041 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/IMAGEM
2019-Jan-09 11:39:19.9237837 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/IMAGEM
2019-Jan-09 11:39:20.0643723 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/IMAGEM
2019-Jan-09 11:39:25.0432762 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/IMAGEM/PBF_Buzios_logo_Positivo.jpg ... done.
2019-Jan-09 11:39:26.3132811 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/IMAGEM/PBF_Buzios_logo_NegativoPB.jpg ... done.
2019-Jan-09 11:39:27.5653252 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/IMAGEM/PBF_Buzios_logo_Negativo.jpg ... done.
2019-Jan-09 11:39:28.5335506 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/LOGO/IMAGEM/PBF_Buzios_logo_PositivoPB.jpg ... done.
2019-Jan-09 11:39:29.3041901 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/IMAGEM/PBF_Madeira_logo_NegativoPB.jpg ... done.
2019-Jan-09 11:39:30.2002661 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/IMAGEM/PBF_Madeira_logo_Positivo.jpg ... done.
2019-Jan-09 11:39:31.5010248 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/IMAGEM/PBF_Madeira_logo_Negativo.jpg ... done.
2019-Jan-09 11:39:32.7498064 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/LOGO/IMAGEM/PBF_Madeira_logo_PositivoPB.jpg ... done.
2019-Jan-09 11:39:34.2863266 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/IMAGEM/PBF_Falesia_logo_Negativo.jpg ... done.
2019-Jan-09 11:39:35.5139079 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/IMAGEM/PBF_Falesia_logo_NegativoPB.jpg ... done.
2019-Jan-09 11:39:36.334965 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/IMAGEM/PBF_Falesia_logo_Positivo.jpg ... done.
2019-Jan-09 11:39:37.1461261 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/LOGO/IMAGEM/PBF_Falesia_logo_PositivoPB.jpg ... done.
2019-Jan-09 11:44:53.6698492 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/GRÁFICA/AFTERNOON TEA
2019-Jan-09 11:44:55.2580087 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/GRÁFICA/AFTERNOON TEA/ORÇAMENTO.txt ... done.
2019-Jan-09 11:44:56.314632 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/GRÁFICA/AFTERNOON TEA/PFB_AfternoonTea.pdf ... done.
2019-Jan-09 11:44:57.1406412 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/GRÁFICA/AFTERNOON TEA/PFB_AfternoonTea_Dobra.pdf ... done.
2019-Jan-09 11:44:57.9757523 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/GRÁFICA/AFTERNOON TEA/SIMULAÇÃO.pdf ... done.
2019-Jan-09 11:47:57.1748198 The local item has a different modified time 2018-Dec-11 12:49:25Z remote is 2019-Jan-07 13:05:56Z
2019-Jan-09 11:47:57.8487713 The local item has a different hash
2019-Jan-09 11:47:57.8488935 The local item is out of sync, renaming...
2019-Jan-09 11:47:59.4240596 Downloading file DESIGN _ PORTUGAL/HOTEIS/PSM/FeB/PSM_branding_BARES.pdf ... done.
2019-Jan-09 11:48:03.6050525 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019
2019-Jan-09 11:48:04.8976939 The local item has a different modified time 2019-Jan-04 14:52:40Z remote is 2019-Jan-07 14:47:47Z
2019-Jan-09 11:48:05.6192903 The local item has a different hash
2019-Jan-09 11:48:05.6194942 The local item is out of sync, renaming...
2019-Jan-09 11:48:08.327606 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_DE_IMP.pdf ... done.
2019-Jan-09 11:48:08.3646617 The local item has a different modified time 2019-Jan-04 14:52:48Z remote is 2019-Jan-07 14:47:40Z
2019-Jan-09 11:48:08.5492394 The local item has a different hash
2019-Jan-09 11:48:08.5493489 The local item is out of sync, renaming...
2019-Jan-09 11:48:10.2946399 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_FR_IMP.pdf ... done.
2019-Jan-09 11:48:10.3332121 The local item has a different modified time 2019-Jan-04 14:52:44Z remote is 2019-Jan-07 14:47:43Z
2019-Jan-09 11:48:10.6057792 The local item has a different hash
2019-Jan-09 11:48:10.605905 The local item is out of sync, renaming...
2019-Jan-09 11:48:11.8553567 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_EN_IMP.pdf ... done.
2019-Jan-09 11:48:11.8887967 The local item has a different modified time 2019-Jan-04 14:52:51Z remote is 2019-Jan-07 14:47:36Z
2019-Jan-09 11:48:12.047343 The local item has a different hash
2019-Jan-09 11:48:12.04759 The local item is out of sync, renaming...
2019-Jan-09 11:48:13.1962526 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_PT_IMP.pdf ... done.
2019-Jan-09 11:48:13.2571047 The local item has a different modified time 2019-Jan-04 15:00:21Z remote is 2019-Jan-07 14:45:04Z
2019-Jan-09 11:48:13.7950211 The local item has a different hash
2019-Jan-09 11:48:13.7952155 The local item is out of sync, renaming...
2019-Jan-09 11:48:29.6737496 Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_DE_IMP_CASEIRA.pdf ... done.
2019-Jan-09 11:48:29.7666073 The local item has a different modified time 2019-Jan-04 15:00:35Z remote is 2019-Jan-07 14:44:43Z
2019-Jan-09 11:48:30.5451712 The local item has a different hash
2019-Jan-09 11:48:30.5453202 The local item is out of sync, renaming...
2019-Jan-09 11:48:38.7406993 Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_EN_IMP_CASEIRA.pdf ... done.
2019-Jan-09 11:48:40.9904473 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN
2019-Jan-09 11:48:42.9824155 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK
2019-Jan-09 11:48:43.1133711 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SITE
2019-Jan-09 11:48:43.3464488 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SOCIAL MEDIA
2019-Jan-09 11:48:43.445006 Creating directory: DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/ENEWS
2019-Jan-09 11:48:45.4221088 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_0.gif ... done.
2019-Jan-09 11:48:46.2815686 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_0.png ... done.
2019-Jan-09 11:48:49.2902164 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_background.jpg ... done.
2019-Jan-09 11:48:50.2249871 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_DE_1.png ... done.
2019-Jan-09 11:48:51.3114622 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_DE_2.png ... done.
2019-Jan-09 11:48:52.3606031 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_DE_3.png ... done.
2019-Jan-09 11:48:53.3331085 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_EN_1.png ... done.
2019-Jan-09 11:48:54.1258814 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_DE_4.png ... done.
2019-Jan-09 11:48:54.9153139 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_EN_2.png ... done.
2019-Jan-09 11:48:55.7522674 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_EN_3.png ... done.
2019-Jan-09 11:48:56.551824 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_EN_4.png ... done.
2019-Jan-09 11:48:57.3114166 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_FR_1.png ... done.
2019-Jan-09 11:48:58.1187616 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_FR_2.png ... done.
2019-Jan-09 11:48:58.9471435 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_FR_3.png ... done.
2019-Jan-09 11:48:59.7235698 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_FR_4.png ... done.
2019-Jan-09 11:49:00.9398597 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_PT_1.png ... done.
2019-Jan-09 11:49:01.8083967 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_PT_2.png ... done.
2019-Jan-09 11:49:02.6154633 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_PT_3.png ... done.
2019-Jan-09 11:49:03.393301 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/OPTIMONK/PB_campanha72h_JAN_OptiMonk_PT_4.png ... done.
2019-Jan-09 11:49:04.7766065 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SITE/PB_campanha72h_JAN_site_slideshow.jpg ... done.
2019-Jan-09 11:49:06.5345998 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SITE/PB_campanha72h_JAN_site_thumbnail.jpg ... done.
2019-Jan-09 11:49:07.6654836 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SOCIAL MEDIA/PB_campanha72h_JAN_facebook_PT.jpg ... done.
2019-Jan-09 11:49:08.6458442 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SOCIAL MEDIA/PB_campanha72h_JAN_facebook_EN.jpg ... done.
2019-Jan-09 11:49:10.8586604 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/SOCIAL MEDIA/PB_campanha72h_JAN_Instagram.jpg ... done.
2019-Jan-09 11:49:12.0306797 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/ENEWS/PB_campanha72h_JAN_enews_DE_alta.jpg ... done.
2019-Jan-09 11:49:14.2505832 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/ENEWS/PB_campanha72h_JAN_enews_FR_alta.jpg ... done.
2019-Jan-09 11:49:15.3798394 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/ENEWS/PB_campanha72h_JAN_enews_EN_alta.jpg ... done.
2019-Jan-09 11:49:16.7102043 Downloading file DESIGN _ PORTUGAL/PORTOBAY/NET/MAILS/72H/2019/JAN/ENEWS/PB_campanha72h_JAN_enews_PT_alta.jpg ... done.
2019-Jan-09 11:49:21.3637041 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO
2019-Jan-09 11:49:25.1068112 The local item has a different modified time 2019-Jan-04 14:52:27Z remote is 2019-Jan-07 14:46:34Z
2019-Jan-09 11:49:25.2000372 The local item has a different hash
2019-Jan-09 11:49:25.2001366 The local item is out of sync, renaming...
2019-Jan-09 11:49:26.2989893 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_PT_NET.pdf ... done.
2019-Jan-09 11:49:26.3172072 The local item has a different modified time 2019-Jan-04 14:52:20Z remote is 2019-Jan-07 14:42:13Z
2019-Jan-09 11:49:26.3858839 The local item has a different hash
2019-Jan-09 11:49:26.3859925 The local item is out of sync, renaming...
2019-Jan-09 11:49:27.5946651 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_EN_NET.pdf ... done.
2019-Jan-09 11:49:27.7788034 The local item has a different modified time 2019-Jan-04 14:52:16Z remote is 2019-Jan-07 14:46:50Z
2019-Jan-09 11:49:27.8634717 The local item has a different hash
2019-Jan-09 11:49:27.8635961 The local item is out of sync, renaming...
2019-Jan-09 11:49:28.7221801 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_DE_NET.pdf ... done.
2019-Jan-09 11:49:28.9188641 The local item has a different modified time 2019-Jan-04 14:52:24Z remote is 2019-Jan-07 14:47:04Z
2019-Jan-09 11:49:28.9504788 The local item has a different hash
2019-Jan-09 11:49:28.9505602 The local item is out of sync, renaming...
2019-Jan-09 11:49:30.2335802 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_FR_NET.pdf ... done.
2019-Jan-09 11:49:30.5692575 The local item has a different modified time 2018-Dec-11 11:34:09Z remote is 2019-Jan-08 16:23:45Z
2019-Jan-09 11:49:30.6765528 The local item has a different hash
2019-Jan-09 11:49:30.6766829 The local item is out of sync, renaming...
2019-Jan-09 11:49:33.6401979 Downloading file DESIGN _ PORTUGAL/HOTEIS/VPM/FeB/VPM_branding_RESTAURANTES.pdf ... done.
2019-Jan-09 11:49:33.7098202 The local item has a different modified time 2018-Dec-11 11:36:40Z remote is 2019-Jan-08 16:26:51Z
2019-Jan-09 11:49:33.8269759 The local item has a different hash
2019-Jan-09 11:49:33.8270672 The local item is out of sync, renaming...
2019-Jan-09 11:49:35.9035596 Downloading file DESIGN _ PORTUGAL/HOTEIS/VPM/FeB/VPM_branding_BARES.pdf ... done.
2019-Jan-09 11:49:36.1246449 Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO/FLYER
2019-Jan-09 11:49:38.3500703 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/PBF_branding_RESTAURANTS.pdf ... done.
2019-Jan-09 11:49:39.2725589 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/PBF_branding_BAR.pdf ... done.
2019-Jan-09 11:49:39.3003958 The local item has a different modified time 2019-Jan-04 15:00:44Z remote is 2019-Jan-07 14:44:21Z
2019-Jan-09 11:49:39.6671397 The local item has a different hash
2019-Jan-09 11:49:39.6672621 The local item is out of sync, renaming...
2019-Jan-09 11:49:50.1471281 Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_FR_IMP_CASEIRA.pdf ... done.
2019-Jan-09 11:49:50.22076 The local item has a different modified time 2019-Jan-04 15:00:06Z remote is 2019-Jan-07 14:43:58Z
2019-Jan-09 11:49:50.5388327 The local item has a different hash
2019-Jan-09 11:49:50.5389766 The local item is out of sync, renaming...
2019-Jan-09 11:49:56.8675552 Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_PT_IMP_CASEIRA.pdf ... done.
2019-Jan-09 11:49:58.4516869 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO/FLYER/ORÇAMENTO.txt ... done.
2019-Jan-09 11:49:59.5911003 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO/FLYER/PBHT_lancamento_flyer_DOBRAS.pdf ... done.
2019-Jan-09 11:50:01.1565304 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO/FLYER/PBHT_lancamento_flyer_EN_DE.pdf ... done.
2019-Jan-09 11:50:02.2053532 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/LANCAMENTO/FLYER/PBHT_lancamento_flyer_PT_ES.pdf ... done.
2019-Jan-09 11:50:02.2329093 The local item has a different modified time 2019-Jan-02 15:26:33Z remote is 2019-Jan-09 10:41:00Z
2019-Jan-09 11:50:02.3144789 The local item has a different hash
2019-Jan-09 11:50:02.3146082 The local item is out of sync, renaming...
2019-Jan-09 11:50:03.2729328 Downloading file DESIGN _ PORTUGAL/HOTEIS/VPM/QUARTO/LAVANDARIA/VPM_FormularioLavandaria.pdf ... done.
2019-Jan-09 11:50:04.2750081 Downloading file DESIGN _ PORTUGAL/HOTEIS/VPM/QUARTO/LAVANDARIA/SIMULACAO.pdf ... done.
2019-Jan-09 11:50:05.8256332 Downloading file DESIGN _ PORTUGAL/HOTEIS/GERAL/02 _ SÓ 5 EST/00 _ TODOS 5 EST/LAVANDARIA/PB_SacoLavandaria_5est.pdf ... done.
2019-Jan-09 11:50:07.0387556 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/FALESIA/KIT/PBF_FalesiaRestaurant_cor.pdf ... done.
2019-Jan-09 11:50:08.0617458 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/KIT/PBF_BarBuzios_cor.pdf ... done.
2019-Jan-09 11:50:08.8161411 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/MENUS/PBF_AfternoonTea_NET.pdf ... done.
2019-Jan-09 11:50:09.8074085 Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/MADEIRA/KIT/PBF_MadeiraRestaurant_cor.pdf ... done.
2019-Jan-09 11:50:11.0780965 Downloading file DESIGN _ PORTUGAL/HOTEIS/VPM/FeB/OCEANO/MENUS/GRÁFICA/HAPPY HOUR/ORÇAMENTO.txt ... done.
2019-Jan-09 11:50:11.459382 Uploading differences of .
2019-Jan-09 11:50:11.4595937 Processing root
2019-Jan-09 11:50:11.459814 The directory has not changed
2019-Jan-09 11:50:11.4599734 Processing DESIGN _ PORTUGAL
2019-Jan-09 11:50:11.4602403 The directory has not changed
2019-Jan-09 11:50:11.4603716 Processing DESIGN _ PORTUGAL
2019-Jan-09 11:50:11.4606254 The directory has not changed
2019-Jan-09 11:50:11.4857275 Processing PORTOBAY
2019-Jan-09 11:50:11.4862539 The directory has not changed
(...)
2019-Jan-09 11:52:20.4321478 Processing justAFile.txt
2019-Jan-09 11:52:20.4323839 The file has not changed
2019-Jan-09 11:52:20.4324326 Processing newFile1.txt
2019-Jan-09 11:52:20.4326733 The file has not changed
(****THE FOLLOWING COMES FROM THE CONSOLE******)
Uploading new items of .
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS/LOGO
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF/FeB/BUZIOS
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF/FeB
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS
The requested directory to create was not found on OneDrive - creating remote directory: ./DESIGN _ PORTUGAL/HOTEIS
Successfully created the remote directory ./DESIGN _ PORTUGAL/HOTEIS on OneDrive
Giving up on sync after three attempts: JSONValue is not an object
std.json.JSONException@std/json.d(306): JSONValue is not an object
----------------
/root/dlang/dmd-2.083.1/linux/bin64/../../src/phobos/std/exception.d:515 pure @safe void std.exception.bailOut!(std.json.JSONException).bailOut(immutable(char)[], ulong, scope const(char)[]) [0x6677d0b]
/root/dlang/dmd-2.083.1/linux/bin64/../../src/phobos/std/exception.d:436 pure @safe bool std.exception.enforce!(std.json.JSONException).enforce!(bool).enforce(bool, lazy const(char)[], immutable(char)[], ulong) [0x6677c85]
??:? inout pure @property @trusted inout(std.json.JSONValue[immutable(char)[]]) std.json.JSONValue.objectNoRef() [0x66df285]
??:? inout pure ref @safe inout(std.json.JSONValue) std.json.JSONValue.opIndex(immutable(char)[]) [0x66df45c]
src/sync.d:1415 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x66b08fe]
src/sync.d:1405 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x66b08b8]
src/sync.d:1405 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x66b08b8]
src/sync.d:1405 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x66b08b8]
src/sync.d:1352 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0443]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x66b0507]
src/sync.d:1044 void sync.SyncEngine.scanForDifferences(immutable(char)[]) [0x66af071]
src/main.d:661 void main.performSync(sync.SyncEngine, immutable(char)[], bool, bool, bool) [0x6689c18]
src/main.d:482 _Dmain [0x6689248]
evandroamaro commented 5 years ago

I did another run but with download-only. I wasn't liking the previous run, it seemed it wanted to upload to the shared folders, even though I changed nothing locally. It went well.

onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --download-only --enable-logging --verbose --force-http-1.1 --resync

Loading config ...
Using Config Dir: /backups/home/design/.config/onedrive
Using logfile dir: /backups/home/design/
Deleting the saved status ...
Initializing the OneDrive API ...
Opening the item database ...
All operations will be performed in: /backups/home/design/OneDrive
Initializing the Synchronization Engine ...
Account Type: personal
Default Drive ID: 73621e8821877b39
Default Root ID: 73621E8821877B39!101
Remaining Free Space: 5368709076
Fetching details for OneDrive Root
OneDrive Root does not exist in the database. We need to add it.
Added OneDrive Root to the local database
Syncing changes from OneDrive ...
Applying changes of Path ID: 73621E8821877B39!101
Downloading file testeopersonal/newFile2.txt ... done.
Applying changes of Path ID: 7EF2789E900D35F3!2636
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO/VECTORIAL
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO/VECTORIAL/PBF_logo.pdf ... done.
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/PBF_branding_cor.pdf ... done.
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO/IMAGEM
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER/IMAGEM
Creating directory: DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER/VETORIAL
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO/IMAGEM/PBF_logo.png ... done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/LOGO/IMAGEM/PBF_logo.jpg ... done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER/IMAGEM/PBF_teaser.png ... done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER/IMAGEM/PBF_teaser.jpg ... done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/KIT/TEASER/VETORIAL/PBF_teaser.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:46:50Z remote is 2019-Jan-09 15:11:51Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_DE_NET.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:42:13Z remote is 2019-Jan-09 15:11:54Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_EN_NET.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:47:04Z remote is 2019-Jan-09 15:12:03Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_FR_NET.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:46:34Z remote is 2019-Jan-09 15:12:06Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_PT_NET.pdf ... done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/PBHT_FactSheet_ES_NET.pdf ... done.
Downloading file DESIGN _ PORTUGAL/PORTOBAY/RELATÓRIOS/CONTAS/PB16_RelatorioContas_2017.docx ... done.
Downloading file DESIGN _ PORTUGAL/PORTOBAY/RELATÓRIOS/CONTAS/PB15_RelatorioContas_2017.docx ... done.
The local item has a different modified time 2019-Jan-07 14:47:36Z remote is 2019-Jan-09 15:13:00Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_PT_IMP.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:47:40Z remote is 2019-Jan-09 15:13:04Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_FR_IMP.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:47:43Z remote is 2019-Jan-09 15:13:12Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_EN_IMP.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:47:47Z remote is 2019-Jan-09 15:13:16Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_DE_IMP.pdf ... done.
The local item has a different modified time 2019-Jan-07 14:45:04Z remote is 2019-Jan-09 15:10:55Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_DE_IMP_CASEIRA.pdf ...
Downloading 100% |oooooooooooooooooooooooooooooooooooooooo| DONE IN 00:00:21
done.
The local item has a different modified time 2019-Jan-07 14:44:43Z remote is 2019-Jan-09 15:10:34Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_EN_IMP_CASEIRA.pdf ...
Downloading 100% |oooooooooooooooooooooooooooooooooooooooo| DONE IN 00:00:11
done.
The local item has a different modified time 2019-Jan-07 14:44:21Z remote is 2019-Jan-09 15:06:16Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_FR_IMP_CASEIRA.pdf ...
Downloading 100% |oooooooooooooooooooooooooooooooooooooooo| DONE IN 00:00:12
done.
The local item has a different modified time 2019-Jan-07 14:43:58Z remote is 2019-Jan-09 15:05:47Z
The local item has a different hash
The local item is out of sync, renaming...
Downloading file DESIGN _ PORTUGAL/PORTOBAY/DEPARTAMENTOS/MARKETING E VENDAS/FACTSHEET portugal total/PB_FactSheet_PT_IMP_CASEIRA.pdf ...
Downloading 100% |oooooooooooooooooooooooooooooooooooooooo| DONE IN 00:00:09
done.
Downloading file DESIGN _ PORTUGAL/HOTEIS/PBHT/FACTSHEET/IMPRESSÃO CASEIRA/PBHT_FactSheet_ES_NET.pdf ... done.
Applying changes of Path ID: 7EF2789E900D35F3!105
Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/VOUCHERS/PBRJ_Carnaval19_Voucher.dot ... done.
Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/VOUCHERS/PBRJ_Carnaval19_Voucher_Hospede.dot ... done.
Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/POSTERS/PBRJ_Carnaval19_Poster_A5.pdf ... done.
Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/POSTERS/PBRJ_Carnaval19_Poster_Cardapio.pdf ... done.
Downloading file DESIGN _ BRASIL/PBRJ/EVENTOS/CARNAVAL/SOCIAL MEDIA/PBRJ_Carnava19_Post.jpg ... done.
evandroamaro commented 5 years ago

A a final run again, removing --resync and deleted one of my test files remotely. Also went well.

onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --download-only --enable-logging --verbose --force-http-1.1

Loading config ...
Using Config Dir: /backups/home/design/.config/onedrive
Using logfile dir: /backups/home/design/
Initializing the OneDrive API ...
Opening the item database ...
All operations will be performed in: /backups/home/design/OneDrive
Initializing the Synchronization Engine ...
Account Type: personal
Default Drive ID: 73621e8821877b39
Default Root ID: 73621E8821877B39!101
Remaining Free Space: 5368709086
Fetching details for OneDrive Root
OneDrive Root exists in the database
Syncing changes from OneDrive ...
Applying changes of Path ID: 73621E8821877B39!101
Trying to delete item testeopersonal/newFile2.txt
Deleting item testeopersonal/newFile2.txt
Applying changes of Path ID: 7EF2789E900D35F3!2636
Applying changes of Path ID: 7EF2789E900D35F3!105
evandroamaro commented 5 years ago

Uploading is where it fails: New run without --download-only shows errors: onedrive --synchronize --confdir=/backups/home/design/.config/onedrive --enable-logging --verbose --force-http-1.1

This is the end of the console log

The file has not changed
Processing newFile1.txt
The file has not changed
Uploading new items of .
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING/LOGO
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF/BRANDING
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS/PBF
OneDrive Client requested to create remote path: ./DESIGN _ PORTUGAL/HOTEIS
The requested directory to create was not found on OneDrive - creating remote directory: ./DESIGN _ PORTUGAL/HOTEIS
Successfully created the remote directory ./DESIGN _ PORTUGAL/HOTEIS on OneDrive
Giving up on sync after three attempts: JSONValue is not an object
std.json.JSONException@std/json.d(306): JSONValue is not an object
----------------
/root/dlang/dmd-2.083.1/linux/bin64/../../src/phobos/std/exception.d:515 pure @safe void std.exception.bailOut!(std.json.JSONException).bailOut(immutable(char)[], ulong, scope const(char)[]) [0x573b8d0b]
/root/dlang/dmd-2.083.1/linux/bin64/../../src/phobos/std/exception.d:436 pure @safe bool std.exception.enforce!(std.json.JSONException).enforce!(bool).enforce(bool, lazy const(char)[], immutable(char)[], ulong) [0x573b8c85]
??:? inout pure @property @trusted inout(std.json.JSONValue[immutable(char)[]]) std.json.JSONValue.objectNoRef() [0x57420285]
??:? inout pure ref @safe inout(std.json.JSONValue) std.json.JSONValue.opIndex(immutable(char)[]) [0x5742045c]
src/sync.d:1415 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x573f18fe]
src/sync.d:1405 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x573f18b8]
src/sync.d:1405 void sync.SyncEngine.uploadCreateDir(const(immutable(char)[])) [0x573f18b8]
src/sync.d:1352 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1443]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1507]
src/sync.d:1363 void sync.SyncEngine.uploadNewItems(immutable(char)[]) [0x573f1507]
src/sync.d:1044 void sync.SyncEngine.scanForDifferences(immutable(char)[]) [0x573f0071]
src/main.d:661 void main.performSync(sync.SyncEngine, immutable(char)[], bool, bool, bool) [0x573cac18]
src/main.d:482 _Dmain [0x573ca248]
abraunegg commented 5 years ago

@evandroamaro Can you please provide via email:

evandroamaro commented 5 years ago

Done. On your way,

abraunegg commented 5 years ago

@evandroamaro Looking at the log file this appears to be a separate issue which will need it's own PR, where also additional debugging will be needed. As the original issue is also fixed, I will setup a new issue with the details & send you a PR to test.

abraunegg commented 5 years ago

Closing as PR #336 merged which fixes original issue in this issue ticket.

lock[bot] commented 5 years ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.