-
Type: Bug
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: QualifiedToSchedule
-
Component/s: Synchronizer
-
Epic Link:
Running the tests related to NXDRIVE-668, we found another bug (at least under Linux): when the downstream synchronization is processed to Client-User01, the move from subfolder01/File01 to subfolder02 might not occur.
This happens when the documentMoved event is the first one in the list of fileSystemItemChanges sent by the server, which is sorted by descending event date.
In this case, the call to _synchronize_remotely_modified is supposed to handle the remote move of File01, but _is_remote_move returns False because subfolder02 has not been created locally yet.
Indeed, in:
def _is_remote_move(self, doc_pair, debug=False): local_parent_pair = self._dao.get_state_from_local(doc_pair.local_parent_path) remote_parent_pair = self._get_normal_state_from_remote_ref(doc_pair.remote_parent_ref) if debug: log.debug("is_remote_move: local:%r remote:%r", local_parent_pair, remote_parent_pair) return (local_parent_pair is not None and remote_parent_pair is not None and local_parent_pair.id != remote_parent_pair.id, remote_parent_pair)
remote_parent_pair is None, doc_pair.remote_parent_ref being the id of the remote subfolder02 document.
To reveal this bug just uncomment this line "# TODO NXDRIVE-777: uncomment when issue is fixed" in TestSynchronization::test_rename_and_create_same_folder_not_running
22:01:11 [SLAVE] [INFO] [exec] nuxeo-drive-client/tests/test_synchronization.py ......F 22:01:11 [SLAVE] [INFO] [exec] =========================== short test summary info ============================ 22:01:11 [SLAVE] [INFO] [exec] FAIL nuxeo-drive-client/tests/test_synchronization.py::TestSynchronization::test_rename_and_create_same_folder_not_running 22:01:11 [SLAVE] [INFO] [exec] =================================== FAILURES =================================== 22:01:11 [SLAVE] [INFO] [exec] ______ TestSynchronization.test_rename_and_create_same_folder_not_running ______ 22:01:11 [SLAVE] [INFO] [exec] self = <tests.test_synchronization.TestSynchronization testMethod=test_rename_and_create_same_folder_not_running> 22:01:11 [SLAVE] [INFO] [exec] def test_rename_and_create_same_folder_not_running(self): 22:01:11 [SLAVE] [INFO] [exec] """ 22:01:11 [SLAVE] [INFO] [exec] NXDRIVE-668: Fix upload issue when renaming a folder and creating a folder with the same name 22:01:11 [SLAVE] [INFO] [exec] while Drive client is not running: 22:01:11 [SLAVE] [INFO] [exec] IntegrityError: UNIQUE constraint failed: States.remote_ref, States.local_path 22:01:11 [SLAVE] [INFO] [exec] """ 22:01:11 [SLAVE] [INFO] [exec] local_1 = self.local_client_1 22:01:11 [SLAVE] [INFO] [exec] remote_1 = self.remote_document_client_1 22:01:11 [SLAVE] [INFO] [exec] local_2 = self.local_client_2 22:01:11 [SLAVE] [INFO] [exec] self.engine_1.start() 22:01:11 [SLAVE] [INFO] [exec] self.engine_2.start() 22:01:11 [SLAVE] [INFO] [exec] self.wait_sync(wait_for_async=True, wait_for_engine_2=True) 22:01:11 [SLAVE] [INFO] [exec] # First, create initial folders and files 22:01:11 [SLAVE] [INFO] [exec] folder = remote_1.make_folder('/', 'Folder01') 22:01:11 [SLAVE] [INFO] [exec] remote_1.make_folder('/Folder01', 'subfolder01') 22:01:11 [SLAVE] [INFO] [exec] remote_1.make_file('/Folder01/subfolder01', 'File01', b'42') 22:01:11 [SLAVE] [INFO] [exec] self.wait_sync(wait_for_async=True, wait_for_engine_2=True) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(remote_1.exists('/Folder01/subfolder01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(remote_1.exists('/Folder01/subfolder01/File01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_1.exists('/Folder01/subfolder01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_1.exists('/Folder01/subfolder01/File01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder01/File01')) 22:01:11 [SLAVE] [INFO] [exec] # Stop clients and make the local changes on a folder 22:01:11 [SLAVE] [INFO] [exec] self.engine_1.stop() 22:01:11 [SLAVE] [INFO] [exec] self.engine_2.stop() 22:01:11 [SLAVE] [INFO] [exec] local_2.rename('/Folder01/subfolder01', 'subfolder02') 22:01:11 [SLAVE] [INFO] [exec] local_2.make_folder('/Folder01', 'subfolder01') 22:01:11 [SLAVE] [INFO] [exec] local_2.make_file('/Folder01/subfolder01', 'File02', b'42.42') 22:01:11 [SLAVE] [INFO] [exec] self.engine_1.start() 22:01:11 [SLAVE] [INFO] [exec] self.engine_2.start() 22:01:11 [SLAVE] [INFO] [exec] self.wait_sync(wait_for_async=True) 22:01:11 [SLAVE] [INFO] [exec] # Check client 2 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder02')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder02/File01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(local_2.get_content('/Folder01/subfolder02/File01'), b'42') 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder01')) 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_2.exists('/Folder01/subfolder01/File02')) 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(local_2.get_content('/Folder01/subfolder01/File02'), b'42.42') 22:01:11 [SLAVE] [INFO] [exec] # Check server 22:01:11 [SLAVE] [INFO] [exec] children = remote_1.get_children_info(folder) 22:01:11 [SLAVE] [INFO] [exec] self.assertEquals(len(children), 2) 22:01:11 [SLAVE] [INFO] [exec] subfolder = children[0] 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(subfolder.name, 'subfolder01') 22:01:11 [SLAVE] [INFO] [exec] file_path = '/Folder01/%s/File02' % subfolder.path.rsplit('/', 1)[1] 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(remote_1.exists(file_path)) 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(remote_1.get_content(file_path), b'42.42') 22:01:11 [SLAVE] [INFO] [exec] subfolder = children[1] 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(subfolder.name, 'subfolder02') 22:01:11 [SLAVE] [INFO] [exec] file_path = '/Folder01/%s/File01' % subfolder.path.rsplit('/', 1)[1] 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(remote_1.exists(file_path)) 22:01:11 [SLAVE] [INFO] [exec] self.assertEqual(remote_1.get_content(file_path), b'42') 22:01:11 [SLAVE] [INFO] [exec] # Check client 1 22:01:11 [SLAVE] [INFO] [exec] self.assertTrue(local_1.exists('/Folder01/subfolder02')) 22:01:11 [SLAVE] [INFO] [exec] > self.assertTrue(local_1.exists('/Folder01/subfolder02/File01')) 22:01:11 [SLAVE] [INFO] [exec] E AssertionError: False is not true 22:01:11 [SLAVE] [INFO] [exec] children = [NuxeoDocumentInfo(root=u'5a05963d-0dc4-4000-b714-fec6550f3952', name=u'subfold...lob=False, filename=None, lock_owner...0-b714-fec6550f3952', name=u'subfold...lob=False, filename=None, lock_owner=None, lock_created=None, permissions=None)] 22:01:11 [SLAVE] [INFO] [exec] file_path = '/Folder01/subfolder02/File01' 22:01:11 [SLAVE] [INFO] [exec] folder = 'c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6' 22:01:11 [SLAVE] [INFO] [exec] local_1 = <nxdrive.client.local_client.LocalClient object at 0x7fc9a1ef7f10> 22:01:11 [SLAVE] [INFO] [exec] local_2 = <nxdrive.client.local_client.LocalClient object at 0x7fc9a1ef7a50> 22:01:11 [SLAVE] [INFO] [exec] remote_1 = <RemoteDocumentClient base_folder=None, blob_timeout=60, check_suspended=None,...UL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpZ0NRNj-nxdrive-uploads', user_id='driveuser_1'> 22:01:11 [SLAVE] [INFO] [exec] self = <tests.test_synchronization.TestSynchronization testMethod=test_rename_and_create_same_folder_not_running> 22:01:11 [SLAVE] [INFO] [exec] subfolder = NuxeoDocumentInfo(root=u'5a05963d-0dc4-4000-b714-fec6550f3952', name=u'subfold...lob=False, filename=None, lock_owner=None, lock_created=None, permissions=None) 22:01:11 [SLAVE] [INFO] [exec] nuxeo-drive-client/tests/test_synchronization.py:827: AssertionError 22:01:11 [SLAVE] [INFO] [exec] ----------------------------- Captured stderr call ----------------------------- 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:00,596 3493 140504712013568 INFO nxdrive.manager --consider-ssl-errors option is True, will verify HTTPS certificates 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:00,597 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create DAO on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/manager.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:00,598 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create main connexion on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/manager.db (dir exists: 1 / file exists: 0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,443 3493 140504712013568 TRACE nxdrive.manager Manager.refresh_proxies(proxy_settings=None, device_config=None) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,444 3493 140504712013568 TRACE nxdrive.manager Setting self.proxies['default'] = None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,444 3493 140504712013568 DEBUG nxdrive.osi Not using any OS integration 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,486 3493 140504712013568 DEBUG nxdrive.updater Application is not frozen, cannot build Esky instance, as a consequence update features won't be available 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,495 3493 140504712013568 INFO nxdrive.manager --consider-ssl-errors option is True, will verify HTTPS certificates 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,496 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create DAO on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/manager.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:03,496 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create main connexion on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/manager.db (dir exists: 1 / file exists: 0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:07,363 3493 140504712013568 TRACE nxdrive.manager Manager.refresh_proxies(proxy_settings=None, device_config=None) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:07,364 3493 140504712013568 TRACE nxdrive.manager Setting self.proxies['default'] = None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:07,364 3493 140504712013568 DEBUG nxdrive.osi Not using any OS integration 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,227 3493 140504712013568 DEBUG nxdrive.updater Application is not frozen, cannot build Esky instance, as a consequence update features won't be available 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,227 3493 140504712013568 DEBUG tests.common Will use http://localhost:8080/nuxeo#NXDRIVE as url 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,230 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,230 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-administrator-device', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,398 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,402 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"06ec6042-4d1c-416b-8869-3d9fc223228d","path":"/","type":"Root","state":null,"parentRef":"/","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":null,"title":"06ec6042-4d1c-416b-8869-3d9fc223228d","properties":{"common:icon-expanded":null,"common:icon":null,"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":null,"dc:modified":null,"dc:lastContributor":null,"dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":null,"dc:title":null,"dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":[],"dc:source":null,"dc:publisher":null},"facets":["Folderish","NotCollectionMember"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,402 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetupIntegrationTests with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"userNames": "user_1, user_2", "permission": "ReadWrite"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,991 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetupIntegrationTests' with cookies [] has content-type 'text/plain;charset=UTF-8' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:08,992 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,000 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e","path":"/default-domain/workspaces","type":"WorkspaceRoot","state":"project","parentRef":"0bcae385-1002-45d8-9b86-92c71b89bc52","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490129240115","title":"Workspaces","lastModified":"2017-03-21T20:47:20.115Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"system","dc:modified":"2017-03-21T20:47:20.115Z","dc:lastContributor":"system","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T20:47:20.115Z","dc:title":"Workspaces","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["system"],"dc:source":null,"dc:publisher":null},"facets":["Folderish","SuperSpace","HiddenInCreation","NotCollectionMember"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,000 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.GetChildren with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"input": "doc:f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e", "params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,009 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.GetChildren' with cookies []: '{"entity-type":"documents","entries":[{"entity-type":"document","repository":"default","uid":"5a05963d-0dc4-4000-b714-fec6550f3952","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133608411","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-21T22:00:08.411Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-21T22:00:08.411Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:08.411Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,010 3493 140504712013568 DEBUG tests.common SuperWorkspace info: {u'changeToken': u'1490129240115', u'uid': u'f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e', u'repository': u'default', u'title': u'Workspaces', u'lastModified': u'2017-03-21T20:47:20.115Z', u'facets': [u'Folderish', u'SuperSpace', u'HiddenInCreation', u'NotCollectionMember'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'0bcae385-1002-45d8-9b86-92c71b89bc52', u'path': u'/default-domain/workspaces', u'isProxy': False, u'type': u'WorkspaceRoot', u'properties': {u'dc:subjects': [], u'dc:source': None, u'common:icon-expanded': None, u'dc:valid': None, u'dc:language': None, u'dc:creator': u'system', u'dc:title': u'Workspaces', u'dc:expired': None, u'dc:coverage': None, u'dc:modified': u'2017-03-21T20:47:20.115Z', u'dc:lastContributor': u'system', u'dc:created': u'2017-03-21T20:47:20.115Z', u'dc:contributors': [u'system'], u'common:icon': u'/icons/workspace.gif', u'dc:issued': None, u'dc:publisher': None, u'dc:nature': None, u'dc:format': None, u'dc:description': None, u'dc:rights': None}, u'isVersion': False} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,010 3493 140504712013568 DEBUG tests.common SuperWorkspace children: {u'entity-type': u'documents', u'entries': [{u'changeToken': u'1490133608411', u'uid': u'5a05963d-0dc4-4000-b714-fec6550f3952', u'repository': u'default', u'title': u'Nuxeo Drive Test Workspace', u'lastModified': u'2017-03-21T22:00:08.411Z', u'facets': [u'Folderish', u'SuperSpace'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e', u'path': u'/default-domain/workspaces/nuxeo-drive-test-workspace', u'isProxy': False, u'type': u'Workspace', u'properties': {u'webc:url': None, u'dc:language': None, u'dc:valid': None, u'dc:subjects': [], u'webc:theme': u'sites', u'dc:title': u'Nuxeo Drive Test Workspace', u'dc:coverage': None, u'dc:lastContributor': u'Administrator', u'dc:created': u'2017-03-21T22:00:08.411Z', u'webc:email': None, u'dc:contributors': [u'Administrator'], u'dc:publisher': None, u'dc:format': None, u'webc:baseline': None, u'dc:source': None, u'common:icon-expanded': None, u'webc:useCaptcha': None, u'dc:nature': None, u'dc:creator': u'Administrator', u'webc:logo': None, u'webc:name': None, u'file:content': None, u'webc:welcomeText': None, u'dc:description': None, u'dc:rights': None, u'webc:welcomeMedia': None, u'webc:isWebContainer': None, u'webc:template': None, u'common:icon': u'/icons/workspace.gif', u'dc:expired': None, u'webc:moderationType': u'aposteriori', u'webc:themePage': u'workspace', u'dc:modified': u'2017-03-21T22:00:08.411Z', u'webc:themePerspective': None, u'dc:issued': None, u'files:files': [], u'publish:sections': []}, u'isVersion': False}]} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,011 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/nuxeo-drive-test-workspace"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,016 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"5a05963d-0dc4-4000-b714-fec6550f3952","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133608411","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-21T22:00:08.411Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-21T22:00:08.411Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:08.411Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,016 3493 140504712013568 DEBUG tests.common Workspace info: {u'changeToken': u'1490133608411', u'uid': u'5a05963d-0dc4-4000-b714-fec6550f3952', u'repository': u'default', u'title': u'Nuxeo Drive Test Workspace', u'lastModified': u'2017-03-21T22:00:08.411Z', u'facets': [u'Folderish', u'SuperSpace'], u'entity-type': u'document', u'state': u'project', u'isCheckedOut': True, u'parentRef': u'f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e', u'path': u'/default-domain/workspaces/nuxeo-drive-test-workspace', u'isProxy': False, u'type': u'Workspace', u'properties': {u'webc:url': None, u'dc:language': None, u'dc:valid': None, u'dc:subjects': [], u'webc:theme': u'sites', u'dc:title': u'Nuxeo Drive Test Workspace', u'dc:coverage': None, u'dc:lastContributor': u'Administrator', u'dc:created': u'2017-03-21T22:00:08.411Z', u'webc:email': None, u'dc:contributors': [u'Administrator'], u'dc:publisher': None, u'dc:format': None, u'webc:baseline': None, u'dc:source': None, u'common:icon-expanded': None, u'webc:useCaptcha': None, u'dc:nature': None, u'dc:creator': u'Administrator', u'webc:logo': None, u'webc:name': None, u'file:content': None, u'webc:welcomeText': None, u'dc:description': None, u'dc:rights': None, u'webc:welcomeMedia': None, u'webc:isWebContainer': None, u'webc:template': None, u'common:icon': u'/icons/workspace.gif', u'dc:expired': None, u'webc:moderationType': u'aposteriori', u'webc:themePage': u'workspace', u'dc:modified': u'2017-03-21T22:00:08.411Z', u'webc:themePerspective': None, u'dc:issued': None, u'files:files': [], u'publish:sections': []}, u'isVersion': False} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,018 3493 140504712013568 DEBUG nxdrive.manager Engine type has been specified in the url: NXDRIVE will be used 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,398 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create DAO on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/ndrive_bfd6f0960e8111e7acac0242ac11000d.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,398 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create main connexion on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/ndrive_bfd6f0960e8111e7acac0242ac11000d.db (dir exists: 1 / file exists: 0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,825 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,829 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,834 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:09,834 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,094 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=GNU%2FLinux+Desktop&revoke=false&deviceId=bc8486100e8111e7acac0242ac11000d&permission=ReadWrite with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,098 3493 140504712013568 TRACE nxdrive.client.base_automation_client Got token 'b62b6b6f-b795-477d-b59e-f2235f2020d9' with cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,101 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,107 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo' with cookies []: '{"updateSiteURL":"http://community.nuxeo.com/static/drive/","betaUpdateSiteURL":"http://community.nuxeo.com/static/drive-tests/","serverVersion":"9.1-SNAPSHOT"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,107 3493 140504712013568 DEBUG nxdrive.engine.engine Fetched update info for engine [localhost] from server http://localhost:8080/nuxeo/: {u'betaUpdateSiteURL': u'http://community.nuxeo.com/static/drive-tests/', u'updateSiteURL': u'http://community.nuxeo.com/static/drive/', u'serverVersion': u'9.1-SNAPSHOT'} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,113 3493 140504712013568 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,116 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,116 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,135 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,141 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"creationDate":139,"folder":true,"creator":"system","parentId":null,"canRename":false,"lastContributor":"system","lastModificationDate":139,"canDelete":false,"lockInfo":null,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,142 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,142 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 0, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,143 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,144 3493 140504712013568 TRACE nxdrive.client.local_client Setting xattr ndriveroot with value 'http://localhost:8080/nuxeo/|driveuser_1|bc8486100e8111e7acac0242ac11000d|bfd6f0960e8111e7acac0242ac11000d' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,144 3493 140504712013568 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,144 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/, remote_name=None, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,145 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,150 3493 140504712013568 DEBUG nxdrive.manager Engine type has been specified in the url: NXDRIVE will be used 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,151 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create DAO on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/ndrive_c08399cc0e8111e7acac0242ac11000d.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,152 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Create main connexion on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/ndrive_c08399cc0e8111e7acac0242ac11000d.db (dir exists: 1 / file exists: 0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,171 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,176 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Vacuum sqlite finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,177 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,178 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,201 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=GNU%2FLinux+Desktop&revoke=false&deviceId=beda915c0e8111e7acac0242ac11000d&permission=ReadWrite with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,207 3493 140504712013568 TRACE nxdrive.client.base_automation_client Got token '104c3216-be30-4993-ac06-14f32a950dbb' with cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,213 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,219 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetClientUpdateInfo' with cookies []: '{"updateSiteURL":"http://community.nuxeo.com/static/drive/","betaUpdateSiteURL":"http://community.nuxeo.com/static/drive-tests/","serverVersion":"9.1-SNAPSHOT"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,219 3493 140504712013568 DEBUG nxdrive.engine.engine Fetched update info for engine [localhost] from server http://localhost:8080/nuxeo/: {u'betaUpdateSiteURL': u'http://community.nuxeo.com/static/drive-tests/', u'updateSiteURL': u'http://community.nuxeo.com/static/drive/', u'serverVersion': u'9.1-SNAPSHOT'} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,223 3493 140504712013568 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,226 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,226 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,250 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,255 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetTopLevelFolder' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"creationDate":253,"folder":true,"creator":"system","parentId":null,"canRename":false,"lastContributor":"system","lastModificationDate":253,"canDelete":false,"lockInfo":null,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,256 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,256 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 0, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,259 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Will not push pair: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,259 3493 140504712013568 TRACE nxdrive.client.local_client Setting xattr ndriveroot with value 'http://localhost:8080/nuxeo/|driveuser_2|beda915c0e8111e7acac0242ac11000d|c08399cc0e8111e7acac0242ac11000d' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,260 3493 140504712013568 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,260 3493 140504712013568 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/, remote_name=None, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,262 3493 140504712013568 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[1](Local: u'/', Remote: None, Local state: created, Remote state: unknown, State: locally_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,268 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,269 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,290 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"value": "5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,296 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"5a05963d-0dc4-4000-b714-fec6550f3952","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133608411","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-21T22:00:08.411Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-21T22:00:08.411Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:08.411Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,298 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,298 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,316 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'}, cookies [] and JSON payload '{"params": {"value": "5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,322 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"5a05963d-0dc4-4000-b714-fec6550f3952","path":"/default-domain/workspaces/nuxeo-drive-test-workspace","type":"Workspace","state":"project","parentRef":"f3e3fe6b-99ce-4eff-a1af-7d56a5aac25e","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133608411","title":"Nuxeo Drive Test Workspace","lastModified":"2017-03-21T22:00:08.411Z","properties":{"webc:themePerspective":null,"webc:useCaptcha":null,"webc:isWebContainer":null,"webc:template":null,"webc:themePage":"workspace","webc:logo":null,"webc:name":null,"webc:email":null,"webc:welcomeMedia":null,"webc:url":null,"webc:baseline":null,"webc:theme":"sites","webc:moderationType":"aposteriori","webc:welcomeText":null,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/workspace.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"Administrator","dc:modified":"2017-03-21T22:00:08.411Z","dc:lastContributor":"Administrator","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:08.411Z","dc:title":"Nuxeo Drive Test Workspace","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["Administrator"],"dc:source":null,"dc:publisher":null,"publish:sections":[]},"facets":["Folderish","SuperSpace"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,323 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,323 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,340 3493 140504712013568 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,340 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-2', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'} and cookies [] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,365 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:5a05963d-0dc4-4000-b714-fec6550f3952", "params": {"enable": true}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,384 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,385 3493 140504712013568 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-2', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzI6YzM4NTEz'}, cookies [] and JSON payload '{"input": "doc:5a05963d-0dc4-4000-b714-fec6550f3952", "params": {"enable": true}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,396 3493 140504712013568 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.SetSynchronization' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:10,400 3493 140504405444352 DEBUG tests.common UnitTest thread started 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,402 3493 140504405444352 TRACE nxdrive.client.local_client Setting xattr drive-fs-test with value 'NXDRIVE_VERIFICATION' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,403 3493 140504405444352 TRACE nxdrive.client.local_client Removing xattr drive-fs-test from /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,404 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d starting 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,405 3493 140503412635392 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503412635392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,405 3493 140504405444352 TRACE nxdrive.client.local_client Setting xattr drive-fs-test with value 'NXDRIVE_VERIFICATION' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,406 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Watching FS modification on : /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,408 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,409 3493 140504405444352 TRACE nxdrive.client.local_client Removing xattr drive-fs-test from /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,409 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_CREATE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,410 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_ATTRIB, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,411 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d starting 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,411 3493 140504405444352 DEBUG tests.common Wait for sync 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,411 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,412 3493 140503404242688 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503404242688) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,413 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Watching FS modification on : /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,415 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,416 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_CREATE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,416 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_ATTRIB, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,924 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,924 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,925 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,925 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,930 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,930 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,930 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:11,931 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,828 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_DELETE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,830 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_DELETE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,832 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,834 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,839 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Watchdog setup finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,839 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Full scan started 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,839 3493 140503404242688 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,840 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Watchdog setup finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,840 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Full scan started 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,840 3493 140503412635392 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,842 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,842 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,842 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,842 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,843 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,844 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,844 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:12,844 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,340 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,340 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,345 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,346 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,622 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,622 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,624 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,624 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Full scan finished in 785ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,624 3493 140503404242688 DEBUG nxdrive.engine.queue_manager Resuming queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,625 3493 140503395849984 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140503395849984) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,625 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,626 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Full scan finished in 786ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,626 3493 140503412635392 DEBUG nxdrive.engine.queue_manager Resuming queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,627 3493 140502766692096 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140502766692096) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,628 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=True 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,629 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,629 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote full scan 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,630 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=True 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,631 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,631 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote full scan 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,632 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,635 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,637 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,638 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,638 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,639 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,640 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,640 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,641 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,642 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,643 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,644 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,644 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,644 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,644 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,647 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,647 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,648 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"creationDate":646,"folder":true,"creator":"system","parentId":null,"canRename":false,"lastContributor":"system","lastModificationDate":646,"canDelete":false,"lockInfo":null,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,649 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,649 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,651 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,652 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,653 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,652 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,650 3493 140502766692096 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 0, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,653 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,654 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,655 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,657 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,657 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,658 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,659 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":false,"canCreateChild":false,"creationDate":656,"folder":true,"creator":"system","parentId":null,"canRename":false,"lastContributor":"system","lastModificationDate":656,"canDelete":false,"lockInfo":null,"name":"Nuxeo Drive","id":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,660 3493 140503395849984 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Nuxeo Drive', uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', parent_uid=None, path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', folderish=True, last_modification_time=datetime.datetime(1970, 1, 1, 0, 0), last_contributor=u'system', digest=None, digest_algorithm=None, download_url=None, can_rename=False, can_delete=False, can_update=False, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,661 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,772 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133613000,"hasTooManyChanges":false,"upperBound":22404,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:13,774 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133613000,"hasTooManyChanges":false,"upperBound":22404,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,767 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Scroll scan not available, performing recursive remote scan for Nuxeo Drive (org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,769 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Scroll scan not available, performing recursive remote scan for Nuxeo Drive (org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,780 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: / 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,781 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: / 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,781 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Skip remote scan as mark_unknown: StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,781 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Skip remote scan as mark_unknown: StateRow[1](Local: u'/', Remote: org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,782 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,784 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,791 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '[{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_2"}]' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,791 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Scanning remote child: RemoteFileInfo(name=u'Nuxeo Drive Test Workspace', uid=u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', parent_uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 10), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,792 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChildren' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '[{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_1"}]' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,792 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Scanning remote child: RemoteFileInfo(name=u'Nuxeo Drive Test Workspace', uid=u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', parent_uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 10), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,865 3493 140502766692096 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,865 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushing QueueItem[2](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,865 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,865 3493 140503395849984 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,865 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushing QueueItem[2](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,866 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,866 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,866 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,867 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,867 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,868 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,868 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,869 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,869 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,883 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"4ec01472-ef04-46e6-8a37-1e2e605bad17","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,883 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952), took 15 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,884 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"ce4c50b1-ccb3-4c11-8bb0-828c1bca73c1","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:14,884 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952), took 15 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,009 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan finished in 2379ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,010 3493 140504712013568 DEBUG tests.common Remote scan completed for engine c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,010 3493 140504712013568 TRACE nxdrive.engine.queue_manager Init processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,010 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,010 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,011 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan finished in 2378ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,012 3493 140504712013568 DEBUG tests.common Remote scan completed for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,012 3493 140504712013568 TRACE nxdrive.engine.queue_manager Init processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,012 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,013 3493 140502758299392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,013 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,013 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,014 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,014 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,096 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502758299392 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,097 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,176 3493 140502758299392 DEBUG nxdrive.engine.processor Executing processor on StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,177 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,177 3493 140502758299392 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a1ca2770>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,178 3493 140502758299392 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,178 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a1ca2e90>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,178 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,179 3493 140502758299392 TRACE nxdrive.engine.processor readonly unlock: unlock on / with 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,180 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,180 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,180 3493 140502758299392 DEBUG nxdrive.engine.processor Creating local folder 'Nuxeo Drive Test Workspace' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,181 3493 140502674437888 TRACE nxdrive.engine.processor readonly unlock: unlock on / with 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,181 3493 140502960756480 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,182 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,183 3493 140502674437888 DEBUG nxdrive.engine.processor Creating local folder 'Nuxeo Drive Test Workspace' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,184 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_CREATE|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,184 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: update lock count on / to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,185 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: relocked path: / with 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,185 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,186 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,186 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_CREATE|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,187 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: update lock count on / to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,187 3493 140502758299392 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,187 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: relocked path: / with 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,188 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,189 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,189 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,190 3493 140502960756480 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,190 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,191 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,191 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,192 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,192 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,193 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive Test Workspace> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,193 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,194 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,194 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,374 3493 140502758299392 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,375 3493 140502674437888 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,375 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace, remote_name=Nuxeo Drive Test Workspace, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,376 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace, remote_name=Nuxeo Drive Test Workspace, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,426 3493 140502758299392 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,426 3493 140502758299392 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a1ca2770>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,427 3493 140502758299392 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,427 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502758299392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,427 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,434 3493 140502674437888 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,434 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a1ca2e90>> on doc pair StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,434 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,435 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,435 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,705 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,706 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,707 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,707 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,711 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,711 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,712 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,712 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,712 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,713 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,713 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,713 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,714 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,715 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,715 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,716 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,716 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,716 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,783 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,783 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,788 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,788 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,788 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,796 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,797 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,797 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,806 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,810 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,811 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,811 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,811 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,812 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,812 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,812 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,812 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,812 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,813 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,813 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,813 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,813 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,813 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,814 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,815 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,815 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,818 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,818 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,819 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,819 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,822 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,826 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,827 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,827 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,827 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:16,828 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,063 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,064 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,064 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22404, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,071 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,072 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,072 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22404, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,082 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133619000,"hasTooManyChanges":false,"upperBound":22434,"fileSystemChanges":[{"eventId":"rootRegistered","eventDate":1490133610391,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_1"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"},{"eventId":"rootRegistered","eventDate":1490133610379,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_1"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"},{"eventId":"documentCreated","eventDate":1490133608411,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_1"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,082 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher 3 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,083 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'rootRegistered', u'fileSystemItem': {u'userName': u'driveuser_1', u'canScrollDescendants': True, u'name': u'Nuxeo Drive Test Workspace', u'canDelete': True, u'creator': u'Administrator', u'lastModificationDate': 1490133610390, u'id': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'canCreateChild': True, u'parentId': u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', u'lockInfo': None, u'folder': True, u'creationDate': 1490133608411, u'lastContributor': u'driveuser_2', u'canRename': True}, u'fileSystemItemId': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'fileSystemItemName': u'Nuxeo Drive Test Workspace', u'repositoryId': u'default', u'docUuid': u'5a05963d-0dc4-4000-b714-fec6550f3952', u'eventDate': 1490133610391} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,083 3493 140504712013568 DEBUG tests.common Remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,083 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace', eventId = rootRegistered (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Nuxeo Drive Test Workspace', uid=u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', parent_uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 10), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Force scan recursive on StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) : 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,084 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,090 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133619000,"hasTooManyChanges":false,"upperBound":22434,"fileSystemChanges":[{"eventId":"rootRegistered","eventDate":1490133610391,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_2"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"},{"eventId":"rootRegistered","eventDate":1490133610379,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_2"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"},{"eventId":"documentCreated","eventDate":1490133608411,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133608411,"folder":true,"creator":"Administrator","parentId":"org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133610390,"canDelete":true,"lockInfo":null,"name":"Nuxeo Drive Test Workspace","id":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","userName":"driveuser_2"},"docUuid":"5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","fileSystemItemName":"Nuxeo Drive Test Workspace"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,091 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher 3 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,091 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"6732ad60-b7d5-48a6-9755-98bf0111c594","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,092 3493 140504712013568 DEBUG tests.common Remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,092 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952), took 7 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,092 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'rootRegistered', u'fileSystemItem': {u'userName': u'driveuser_2', u'canScrollDescendants': True, u'name': u'Nuxeo Drive Test Workspace', u'canDelete': True, u'creator': u'Administrator', u'lastModificationDate': 1490133610390, u'id': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'canCreateChild': True, u'parentId': u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', u'lockInfo': None, u'folder': True, u'creationDate': 1490133608411, u'lastContributor': u'driveuser_2', u'canRename': True}, u'fileSystemItemId': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'fileSystemItemName': u'Nuxeo Drive Test Workspace', u'repositoryId': u'default', u'docUuid': u'5a05963d-0dc4-4000-b714-fec6550f3952', u'eventDate': 1490133610391} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,093 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace', eventId = rootRegistered (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,093 3493 140503395849984 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'Nuxeo Drive Test Workspace', uid=u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', parent_uid=u'org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 10), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,093 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Force scan recursive on StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) : 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,094 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,094 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,094 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,095 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,101 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"2318034f-d72e-42b6-9969-8400dd75a864","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,102 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Nuxeo Drive Test Workspace (defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952), took 7 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,186 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,187 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:19,688 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,232 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,232 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,232 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22434, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,233 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,233 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,234 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22434, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,242 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133622000,"hasTooManyChanges":false,"upperBound":22459,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,242 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133622000,"hasTooManyChanges":false,"upperBound":22459,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,243 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:22,243 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,261 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,615 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,616 3493 140504712013568 DEBUG tests.common Sync Completed slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,616 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,778 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:23,779 3493 140504712013568 DEBUG tests.common Sync Completed slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,693 3493 140504405444352 DEBUG tests.common Sync completed, _wait_remote_scan = {u'bfd6f0960e8111e7acac0242ac11000d': False, u'c08399cc0e8111e7acac0242ac11000d': False}, remote changes count = {u'bfd6f0960e8111e7acac0242ac11000d': 3, u'c08399cc0e8111e7acac0242ac11000d': 3}, no remote changes = {u'bfd6f0960e8111e7acac0242ac11000d': True, u'c08399cc0e8111e7acac0242ac11000d': True} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,693 3493 140504405444352 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,694 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Create with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:/default-domain/workspaces/nuxeo-drive-test-workspace/", "params": {"type": "Folder", "name": "Folder01", "properties": "dc:title=Folder01"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,706 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Create' with cookies []: '{"entity-type":"document","repository":"default","uid":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01","type":"Folder","state":"project","parentRef":"5a05963d-0dc4-4000-b714-fec6550f3952","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624698","title":"Folder01","lastModified":"2017-03-21T22:00:24.698Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.698Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.698Z","dc:title":"Folder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,706 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Create with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01", "params": {"type": "Folder", "name": "subfolder01", "properties": "dc:title=subfolder01"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,729 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Create' with cookies []: '{"entity-type":"document","repository":"default","uid":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01","type":"Folder","state":"project","parentRef":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624715","title":"subfolder01","lastModified":"2017-03-21T22:00:24.715Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.715Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.715Z","dc:title":"subfolder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,730 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Create with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01", "params": {"type": "File", "name": "File01", "properties": "dc:title=File01"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,747 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Create' with cookies []: '{"entity-type":"document","repository":"default","uid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File01","type":"File","state":"project","parentRef":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624735","title":"File01","lastModified":"2017-03-21T22:00:24.735Z","properties":{"uid:uid":null,"uid:major_version":0,"uid:minor_version":0,"file:content":null,"common:icon-expanded":null,"common:icon":"/icons/file.gif","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.735Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.735Z","dc:title":"File01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null,"relatedtext:relatedtextresources":[]},"facets":["Versionable","Publishable","Commentable","HasRelatedText","Downloadable"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,752 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies []: '{"batchId":"batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,752 3493 140504405444352 TRACE nxdrive.utils Could not guess mime type for 'File01', returing 'application/octet-stream' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,753 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb/0 with headers {'Content-Length': 2, 'X-Client-Version': '2.2-dev', 'X-Device-Id': u'nxdrive-test-device-1', 'X-File-Type': 'application/octet-stream', 'X-User-Id': 'driveuser_1', 'X-File-Size': 2, 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx', 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'File01'} and cookies [] for file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpZ0NRNj-nxdrive-uploads/tmpqG3Yxh-nxdrive-file-to-upload 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,757 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb/0' with cookies []: '{"uploaded":"true","fileIdx":"0","uploadedSize":"2","uploadType":"normal","batchId":"batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,758 3493 140504405444352 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of Blob.Attach with file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpZ0NRNj-nxdrive-uploads/tmpqG3Yxh-nxdrive-file-to-upload 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,758 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb/0/execute/Blob.Attach with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"document": "cf8b34a8-ab73-4801-84cb-77f8bce49fc2"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,773 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-ba0a5ac4-f8b7-4040-9739-06a1de7485bb/0/execute/Blob.Attach' with cookies [] has content-type 'text/plain' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,774 3493 140504405444352 DEBUG tests.common Wait for sync 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,774 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:24,886 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,320 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,320 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,320 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22459, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,324 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,325 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,325 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22459, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,329 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133626000,"hasTooManyChanges":false,"upperBound":22475,"fileSystemChanges":[{"eventId":"documentModified","eventDate":1490133624767,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133624735,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133624715,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624715,"folder":true,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624715,"canDelete":true,"lockInfo":null,"name":"subfolder01","id":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","userName":"driveuser_1"},"docUuid":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","fileSystemItemId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","fileSystemItemName":"subfolder01"},{"eventId":"documentCreated","eventDate":1490133624698,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624698,"folder":true,"creator":"driveuser_1","parentId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624698,"canDelete":true,"lockInfo":null,"name":"Folder01","id":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","userName":"driveuser_1"},"docUuid":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","fileSystemItemId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","fileSystemItemName":"Folder01"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,330 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher 4 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,330 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentModified', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133624767} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,330 3493 140504712013568 DEBUG tests.common Remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,331 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,331 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133624735} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,331 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,332 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_1', u'canScrollDescendants': True, u'name': u'subfolder01', u'canDelete': True, u'creator': u'driveuser_1', u'lastModificationDate': 1490133624715, u'id': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'canCreateChild': True, u'parentId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'lockInfo': None, u'folder': True, u'creationDate': 1490133624715, u'lastContributor': u'driveuser_1', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'fileSystemItemName': u'subfolder01', u'repositoryId': u'default', u'docUuid': u'bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'eventDate': 1490133624715} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,332 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'subfolder01', uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,332 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_1', u'canScrollDescendants': True, u'name': u'Folder01', u'canDelete': True, u'creator': u'driveuser_1', u'lastModificationDate': 1490133624698, u'id': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'canCreateChild': True, u'parentId': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'lockInfo': None, u'folder': True, u'creationDate': 1490133624698, u'lastContributor': u'driveuser_1', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'fileSystemItemName': u'Folder01', u'repositoryId': u'default', u'docUuid': u'c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'eventDate': 1490133624698} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,334 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133626000,"hasTooManyChanges":false,"upperBound":22475,"fileSystemChanges":[{"eventId":"documentModified","eventDate":1490133624767,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133624735,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133624715,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624715,"folder":true,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624715,"canDelete":true,"lockInfo":null,"name":"subfolder01","id":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","userName":"driveuser_2"},"docUuid":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","fileSystemItemId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","fileSystemItemName":"subfolder01"},{"eventId":"documentCreated","eventDate":1490133624698,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624698,"folder":true,"creator":"driveuser_1","parentId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624698,"canDelete":true,"lockInfo":null,"name":"Folder01","id":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","userName":"driveuser_2"},"docUuid":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","fileSystemItemId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","fileSystemItemName":"Folder01"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,334 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher 4 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,334 3493 140504712013568 DEBUG tests.common Remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,334 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentModified', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_2', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133624767} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,335 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,335 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_2', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133624735} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,335 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,336 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_2', u'canScrollDescendants': True, u'name': u'subfolder01', u'canDelete': True, u'creator': u'driveuser_1', u'lastModificationDate': 1490133624715, u'id': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'canCreateChild': True, u'parentId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'lockInfo': None, u'folder': True, u'creationDate': 1490133624715, u'lastContributor': u'driveuser_1', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'fileSystemItemName': u'subfolder01', u'repositoryId': u'default', u'docUuid': u'bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'eventDate': 1490133624715} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,336 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Could not match changed document to a bound local folder: RemoteFileInfo(name=u'subfolder01', uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:26,336 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_2', u'canScrollDescendants': True, u'name': u'Folder01', u'canDelete': True, u'creator': u'driveuser_1', u'lastModificationDate': 1490133624698, u'id': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'canCreateChild': True, u'parentId': u'defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952', u'lockInfo': None, u'folder': True, u'creationDate': 1490133624698, u'lastContributor': u'driveuser_1', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'fileSystemItemName': u'Folder01', u'repositoryId': u'default', u'docUuid': u'c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'eventDate': 1490133624698} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,231 3493 140503395849984 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,231 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushing QueueItem[3](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,231 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,232 3493 140502766692096 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,232 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushing QueueItem[3](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,232 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,232 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,233 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,233 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Marked doc_pair 'Folder01' as remote creation 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,233 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote recursive scan of the content of Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,234 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Marked doc_pair 'Folder01' as remote creation 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,234 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote recursive scan of the content of Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,234 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,234 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,235 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,235 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,235 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:27,236 3493 140502758299392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,409 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,410 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502758299392 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,490 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,491 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb31bc30>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,491 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,520 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,521 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,521 3493 140502674437888 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace with 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,522 3493 140502674437888 DEBUG nxdrive.engine.processor Creating local folder 'Folder01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,523 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_CREATE|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,523 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,524 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace with 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,524 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,525 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,525 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,525 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,526 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,526 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,527 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,528 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,540 3493 140502758299392 DEBUG nxdrive.engine.processor Executing processor on StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,541 3493 140502758299392 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb31bcc8>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,541 3493 140502758299392 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,542 3493 140502758299392 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace with 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,542 3493 140502960756480 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,543 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,543 3493 140502758299392 DEBUG nxdrive.engine.processor Creating local folder 'Folder01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,544 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_CREATE|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,545 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,545 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace with 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,545 3493 140502960756480 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Nuxeo Drive> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,546 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,546 3493 140502758299392 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,546 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,547 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,547 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=2, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=Folder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,547 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:28,548 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,028 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,028 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,029 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,029 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,030 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,030 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,030 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,030 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,031 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,073 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,073 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,074 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,074 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,074 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,080 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,081 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,081 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,081 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,560 3493 140502758299392 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,561 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 0, local watcher empty events = 0, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,561 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01, remote_name=Folder01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,567 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,584 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 0, local watcher empty events = 0, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,610 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,713 3493 140502674437888 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:29,713 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01, remote_name=Folder01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,375 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 140503404242688 for row 3: either row does't exist or it is being processed 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,375 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,379 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,380 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,380 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,380 3493 140502674437888 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,381 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,381 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb31bc30>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,381 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,410 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,410 3493 140502758299392 DEBUG nxdrive.engine.dao.sqlite Queuing 0 children of 'StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,411 3493 140502758299392 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb31bcc8>> on doc pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,411 3493 140502758299392 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,426 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,426 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,426 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,430 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502758299392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,430 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,452 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,534 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,535 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,556 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:30,557 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,008 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,009 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,009 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,009 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,010 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,010 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace'> on known pair: StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,474 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,484 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,484 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,484 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,484 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,485 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,485 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,485 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,601 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,603 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,603 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace, remote_ref=defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,605 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,607 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,607 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,607 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,608 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,608 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[2](Local: u'/Nuxeo Drive Test Workspace', Remote: defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,609 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,609 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,609 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,610 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,610 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,612 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,614 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,614 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,615 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,615 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,615 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,621 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,621 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:31,622 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,607 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,607 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,628 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,628 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,960 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Continue full scan of /org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/ 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,961 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,963 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Continue full scan of /org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/ 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,964 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,966 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624698,"folder":true,"creator":"driveuser_1","parentId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624698,"canDelete":true,"lockInfo":null,"name":"Folder01","id":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,968 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624698,"folder":true,"creator":"driveuser_1","parentId":"defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624698,"canDelete":true,"lockInfo":null,"name":"Folder01","id":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,970 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,970 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,970 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,971 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,971 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,971 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,972 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,972 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,973 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,973 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,987 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"0d3dad84-b757-4093-83d9-d491e0f6b0df","fileSystemItems":[{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624715,"folder":true,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624715,"canDelete":true,"lockInfo":null,"name":"subfolder01","id":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","userName":"driveuser_2"},{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,988 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved 2 descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6), took 16 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,988 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'subfolder01', uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,992 3493 140503395849984 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,992 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,993 3493 140503395849984 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,993 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,993 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,994 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,994 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,994 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,996 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"b0ecb132-9407-4b39-8154-ac396991c5ad","fileSystemItems":[{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133624715,"folder":true,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624715,"canDelete":true,"lockInfo":null,"name":"subfolder01","id":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","userName":"driveuser_1"},{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,997 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved 2 descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6), took 24 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,997 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'subfolder01', uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:32,998 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,001 3493 140502766692096 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,001 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushing QueueItem[4](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,001 3493 140502766692096 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,002 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,002 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,003 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,003 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,004 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f71348>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,004 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,004 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,005 3493 140502758299392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,005 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Local processing of descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) took 17 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,005 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,006 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "scrollId": "0d3dad84-b757-4093-83d9-d491e0f6b0df", "id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,007 3493 140502674437888 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,008 3493 140502674437888 DEBUG nxdrive.engine.processor Creating local folder 'subfolder01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,009 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_CREATE|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,009 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,010 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,011 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"0d3dad84-b757-4093-83d9-d491e0f6b0df","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,011 3493 140503395849984 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6), took 5 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,011 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair ended: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,011 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,012 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,012 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,012 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,013 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,013 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,197 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502758299392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,333 3493 140502674437888 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,334 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_name=subfolder01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,546 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,547 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,547 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,551 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,552 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,884 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Local processing of descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) took 887 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,885 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,885 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "scrollId": "b0ecb132-9407-4b39-8154-ac396991c5ad", "id": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,892 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"b0ecb132-9407-4b39-8154-ac396991c5ad","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,893 3493 140502766692096 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of Folder01 (defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6), took 8 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,893 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair ended: /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,895 3493 140502674437888 DEBUG nxdrive.engine.dao.sqlite Queuing 1 children of 'StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,896 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,896 3493 140502674437888 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:0, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,896 3493 140502674437888 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,897 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f71348>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,897 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,898 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,899 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,899 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,900 3493 140502666045184 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,900 3493 140502666045184 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,900 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,901 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,901 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,901 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,902 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,902 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,903 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,903 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,908 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22475, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,909 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,913 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22475, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,915 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,918 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502666045184 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,920 3493 140502666045184 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,921 3493 140502666045184 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f71b98>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,921 3493 140502666045184 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,925 3493 140502666045184 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,926 3493 140502666045184 DEBUG nxdrive.engine.processor Creating local file 'File01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,926 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2", "parentId": "defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,928 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133633000,"hasTooManyChanges":false,"upperBound":22479,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,930 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133633000,"hasTooManyChanges":false,"upperBound":22479,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,930 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,931 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,932 3493 140502758299392 DEBUG nxdrive.engine.processor Executing processor on StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,933 3493 140502758299392 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f718a0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,933 3493 140502758299392 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,934 3493 140502758299392 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,935 3493 140502758299392 DEBUG nxdrive.engine.processor Creating local folder 'subfolder01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,936 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_CREATE|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,937 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,939 3493 140502666045184 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,939 3493 140502666045184 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01' to u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart' with digest=a1d0c6e83f027327d8461063f4ac58a6, digest_algorithm=md5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,939 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01' with headers: {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,940 3493 140502758299392 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,941 3493 140502758299392 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,942 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,942 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,943 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,944 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,946 3493 140502666045184 TRACE nxdrive.engine.processor Transfer speed 0 ko/s 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,947 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart, wd=4, mask=IN_CREATE, cookie=0, name=.File01140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,948 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,948 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart, wd=4, mask=IN_MODIFY, cookie=0, name=.File01140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,950 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 1, local watcher empty events = 0, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,950 3493 140502666045184 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,951 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart, wd=4, mask=IN_ATTRIB, cookie=0, name=.File01140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,952 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart, wd=4, mask=IN_ATTRIB, cookie=0, name=.File01140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,952 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,953 3493 140502758299392 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,955 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_name=subfolder01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,955 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart, wd=4, mask=IN_MOVED_FROM, cookie=33660709, name=.File01140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,956 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_MOVED_TO, cookie=33660709, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,960 3493 140502666045184 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01/subfolder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,960 3493 140502666045184 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,961 3493 140502758299392 DEBUG nxdrive.engine.dao.sqlite Queuing 1 children of 'StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,961 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,961 3493 140502758299392 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:0, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,962 3493 140502758299392 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,962 3493 140502758299392 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f718a0>> on doc pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,963 3493 140502758299392 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,963 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,963 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,964 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502758299392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,964 3493 140502666045184 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,965 3493 140502758299392 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,965 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_ATTRIB, cookie=0, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,966 3493 140503387457280 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_ATTRIB, cookie=0, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,966 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,967 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,967 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,968 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,968 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,968 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,969 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,969 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,970 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,970 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,971 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_ref=defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,971 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,971 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,972 3493 140502666045184 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,972 3493 140502758299392 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,973 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_name=File01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,974 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f713e0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,974 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,976 3493 140502674437888 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,976 3493 140502666045184 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f71b98>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,976 3493 140502666045184 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01/file01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,977 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502666045184 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,977 3493 140502666045184 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,978 3493 140502674437888 DEBUG nxdrive.engine.processor Creating local file 'File01' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,978 3493 140502674437888 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2", "parentId": "defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,981 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,983 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,984 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,984 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,984 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,985 3493 140502674437888 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,986 3493 140502674437888 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01' to u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart' with digest=a1d0c6e83f027327d8461063f4ac58a6, digest_algorithm=md5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,986 3493 140502674437888 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01' with headers: {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,991 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,991 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart, wd=4, mask=IN_CREATE, cookie=0, name=.File01140502674437888.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,992 3493 140502674437888 TRACE nxdrive.engine.processor Transfer speed 0 ko/s 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,992 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart, wd=4, mask=IN_MODIFY, cookie=0, name=.File01140502674437888.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,993 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,993 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,993 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,994 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,994 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,994 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,995 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart, wd=4, mask=IN_ATTRIB, cookie=0, name=.File01140502674437888.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,995 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart, wd=4, mask=IN_ATTRIB, cookie=0, name=.File01140502674437888.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,996 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,997 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart, wd=4, mask=IN_MOVED_FROM, cookie=33660714, name=.File01140502674437888.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,998 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_MOVED_TO, cookie=33660714, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,998 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:33,999 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,002 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01/subfolder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,003 3493 140502674437888 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,003 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,003 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_ATTRIB, cookie=0, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,004 3493 140502783477504 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, wd=4, mask=IN_ATTRIB, cookie=0, name=File01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,004 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,005 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,005 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,005 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,005 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,006 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,006 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_ref=defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,008 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,008 3493 140502674437888 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,009 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_name=File01, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,010 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,010 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,011 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9b8f713e0>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,012 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01/file01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,012 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,012 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,019 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,019 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,019 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,439 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,439 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,443 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,444 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,445 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,445 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,446 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,446 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,446 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,447 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,448 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,448 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,453 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,453 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,464 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,465 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,465 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,465 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,466 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,466 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,467 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,467 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,467 3493 140502969149184 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,467 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,471 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,471 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,471 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,476 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,476 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,476 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,476 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,476 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,478 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,478 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,478 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,478 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,478 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,479 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,479 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,479 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,480 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,482 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,483 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,483 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,490 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,491 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502666045184.nxpart to /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,492 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,492 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,492 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,493 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,494 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,494 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,494 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,494 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,494 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,497 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,498 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,498 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,501 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,502 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,502 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,512 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,513 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,513 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,513 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,514 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,514 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,514 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,514 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,515 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,515 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,515 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,515 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> on known pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,516 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,516 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,516 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,516 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,516 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,517 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,520 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,521 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,521 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_ref=defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,524 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,525 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,525 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,558 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,558 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,563 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,563 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,564 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,564 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,564 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,564 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,564 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,565 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,565 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,568 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,569 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,569 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,575 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,575 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,576 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,576 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,576 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,576 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,576 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File01140502674437888.nxpart to /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,577 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,577 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,577 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,581 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,582 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,582 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,591 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,592 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,592 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,592 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,592 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,593 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01'> on known pair: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,596 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503412635392 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,598 3493 140503412635392 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,598 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_ref=defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,607 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Released processor 140503412635392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,608 3493 140503412635392 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:34,608 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,004 3493 140502766692096 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,004 3493 140502766692096 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,004 3493 140503395849984 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,005 3493 140503395849984 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,005 3493 140502766692096 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22479, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,006 3493 140503395849984 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22479, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,013 3493 140503395849984 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133637000,"hasTooManyChanges":false,"upperBound":22503,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,013 3493 140502766692096 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133637000,"hasTooManyChanges":false,"upperBound":22503,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,014 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:37,014 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:38,263 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:38,571 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:38,571 3493 140504712013568 DEBUG tests.common Sync Completed slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:38,572 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,284 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,284 3493 140504712013568 DEBUG tests.common Sync Completed slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,903 3493 140504405444352 DEBUG tests.common Sync completed, _wait_remote_scan = {u'bfd6f0960e8111e7acac0242ac11000d': True, u'c08399cc0e8111e7acac0242ac11000d': True}, remote changes count = {u'bfd6f0960e8111e7acac0242ac11000d': 4, u'c08399cc0e8111e7acac0242ac11000d': 4}, no remote changes = {u'bfd6f0960e8111e7acac0242ac11000d': True, u'c08399cc0e8111e7acac0242ac11000d': True} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,903 3493 140504405444352 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,904 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Query with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"query": "SELECT * FROM Document WHERE ecm:path = \'/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01\' AND ecm:currentLifeCycleState != \'deleted\' AND ecm:isCheckedInVersion = 0 LIMIT 1"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,913 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Query' with cookies []: '{"entity-type":"documents","isPaginable":true,"resultsCount":1,"pageSize":0,"maxPageSize":1000,"currentPageSize":1,"currentPageIndex":0,"numberOfPages":1,"isPreviousPageAvailable":false,"isNextPageAvailable":false,"isLastPageAvailable":false,"isSortable":true,"hasError":false,"errorMessage":null,"totalSize":1,"pageIndex":0,"pageCount":1,"entries":[{"entity-type":"document","repository":"default","uid":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01","type":"Folder","state":"project","parentRef":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624715","title":"subfolder01","lastModified":"2017-03-21T22:00:24.715Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.715Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.715Z","dc:title":"subfolder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,914 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Query with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"query": "SELECT * FROM Document WHERE ecm:path = \'/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File01\' AND ecm:currentLifeCycleState != \'deleted\' AND ecm:isCheckedInVersion = 0 LIMIT 1"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,921 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Query' with cookies []: '{"entity-type":"documents","isPaginable":true,"resultsCount":1,"pageSize":0,"maxPageSize":1000,"currentPageSize":1,"currentPageIndex":0,"numberOfPages":1,"isPreviousPageAvailable":false,"isNextPageAvailable":false,"isLastPageAvailable":false,"isSortable":true,"hasError":false,"errorMessage":null,"totalSize":1,"pageIndex":0,"pageCount":1,"entries":[{"entity-type":"document","repository":"default","uid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File01","type":"File","state":"project","parentRef":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624762","title":"File01","lastModified":"2017-03-21T22:00:24.762Z","properties":{"uid:uid":null,"uid:major_version":0,"uid:minor_version":0,"thumb:thumbnail":{"name":"cc72256e098cbc71fdde51351fb1f65e","mime-type":"image/png","encoding":null,"digestAlgorithm":"MD5","digest":"cc72256e098cbc71fdde51351fb1f65e","length":"428","data":"http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/thumb:thumbnail/cc72256e098cbc71fdde51351fb1f65e"},"file:content":{"name":"File01","mime-type":"text/plain","encoding":null,"digestAlgorithm":"MD5","digest":"a1d0c6e83f027327d8461063f4ac58a6","length":"2","data":"http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/file:content/File01"},"common:icon-expanded":null,"common:icon":"/icons/text.png","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.762Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.735Z","dc:title":"File01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null,"relatedtext:relatedtextresources":[]},"facets":["Versionable","Publishable","Commentable","HasRelatedText","Thumbnail","Downloadable"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,923 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d stopping 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,930 3493 140502766692096 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140502766692096) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,931 3493 140504712013568 TRACE nxdrive.engine.queue_manager Shutdown processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:39,933 3493 140503412635392 INFO nxdrive.engine.watcher.local_watcher Stopping FS Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:40,517 3493 140503412635392 INFO nxdrive.engine.watcher.local_watcher Stopping FS root Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,075 3493 140503412635392 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503412635392) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,076 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d stopped 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,076 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d stopping 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,076 3493 140503395849984 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140503395849984) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,077 3493 140504712013568 TRACE nxdrive.engine.queue_manager Shutdown processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,083 3493 140503404242688 INFO nxdrive.engine.watcher.local_watcher Stopping FS Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:41,469 3493 140503404242688 INFO nxdrive.engine.watcher.local_watcher Stopping FS root Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,028 3493 140503404242688 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503404242688) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,029 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d stopped 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,032 3493 140504405444352 TRACE nxdrive.client.local_client Setting xattr drive-fs-test with value 'NXDRIVE_VERIFICATION' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,032 3493 140504405444352 TRACE nxdrive.client.local_client Removing xattr drive-fs-test from /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,033 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d starting 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,033 3493 140503404242688 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503404242688) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,034 3493 140504405444352 TRACE nxdrive.client.local_client Setting xattr drive-fs-test with value 'NXDRIVE_VERIFICATION' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,034 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Watching FS modification on : /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,036 3493 140504405444352 TRACE nxdrive.client.local_client Removing xattr drive-fs-test from /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,037 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,038 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d starting 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,038 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_CREATE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,039 3493 140503970981632 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503970981632) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,039 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_ATTRIB, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,039 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Watching FS modification on : /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,042 3493 140504405444352 DEBUG tests.common Wait for sync 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,043 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,044 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,045 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_CREATE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,045 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_ATTRIB, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,552 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,552 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,552 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,553 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,558 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,559 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,559 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:42,559 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,067 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_DELETE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,067 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup, wd=1, mask=IN_DELETE, cookie=0, name=.watchdog_setup> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,069 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,070 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive, wd=1, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,071 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Watchdog setup finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,071 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Full scan started 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,071 3493 140503404242688 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,071 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Watchdog setup finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,071 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Full scan started 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,072 3493 140503970981632 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,072 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,073 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,073 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,073 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,074 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,075 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,076 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,077 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,077 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,077 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,077 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,078 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,078 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,081 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,082 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,082 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Update file /Nuxeo Drive Test Workspace/Folder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,083 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,083 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,084 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,084 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,085 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,085 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,086 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,087 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,088 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,088 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,088 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,088 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,090 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,090 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,090 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,091 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,091 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,092 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,092 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,093 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,093 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,093 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,093 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Full scan finished in 23ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,093 3493 140503404242688 DEBUG nxdrive.engine.queue_manager Resuming queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,094 3493 140502775084800 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140502775084800) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,104 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,104 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,105 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,105 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,105 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,106 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,106 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,106 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,568 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,569 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,570 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,572 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,572 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,573 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,573 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,573 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,574 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,575 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,576 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,944 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:43,944 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,267 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,267 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,269 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,270 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Update file /Nuxeo Drive Test Workspace/Folder01/subfolder01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,270 3493 140503970981632 WARNING nxdrive.engine.watcher.local_watcher Detected file substitution: /Nuxeo Drive Test Workspace/Folder01/subfolder01 (None/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,270 3493 140503970981632 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,271 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,271 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=5, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,272 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=None] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,272 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,273 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder01> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,273 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, wd=5, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,274 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,470 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=True 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,470 3493 140502775084800 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,471 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": "22503", "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,478 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133644000,"hasTooManyChanges":false,"upperBound":22503,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,478 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,496 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Found potential moved file /Nuxeo Drive Test Workspace/Folder01/subfolder02[defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,629 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher child_cre_time=0.000000, doc_cre_time=0.000000 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,630 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Found a copy-paste of document 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,630 3493 140503970981632 TRACE nxdrive.client.local_client Removing xattr ndrive from /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,631 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,631 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,632 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,632 3493 140503970981632 TRACE nxdrive.engine.queue_manager Pushing QueueItem[6](Folderish:True, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,632 3493 140503970981632 TRACE nxdrive.engine.queue_manager Pushed to _local_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,790 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,925 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,926 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,928 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,929 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,929 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,930 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Found potential moved file /Nuxeo Drive Test Workspace/Folder01/subfolder02/File01[defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,931 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Found moved file 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,931 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01, remote_ref=defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,931 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,959 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,959 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Starting recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,959 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,960 3493 140504712013568 TRACE nxdrive.engine.queue_manager Init processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,975 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched DB local children for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,975 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Starting to get FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,978 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Fetched FS children info for u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,979 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Found new file /Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,979 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,980 3493 140503970981632 TRACE nxdrive.engine.queue_manager Pushing QueueItem[7](Folderish:False, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:44,980 3493 140503970981632 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,016 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,016 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,016 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/Nuxeo Drive Test Workspace' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,016 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Ended recursive local scan of u'/' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,016 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Full scan finished in 1945ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,017 3493 140503970981632 DEBUG nxdrive.engine.queue_manager Resuming queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,017 3493 140503412635392 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140503412635392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,017 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,017 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating local folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,018 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating local file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,018 3493 140502758299392 DEBUG nxdrive.engine.workers Thread LocalFolderProcessor(140502758299392) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,018 3493 140502758299392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,022 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,023 3493 140502674437888 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,023 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,023 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,023 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,024 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,024 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,024 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,024 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,024 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,025 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,028 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,028 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,028 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,028 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,054 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502758299392 for row 6 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,075 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,082 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,082 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,082 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,083 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,083 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileDeletedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,083 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [deleted] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/.watchdog_setup' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,083 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,083 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,084 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,084 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,084 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,084 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: None, Local state: created, Remote state: unknown, State: locally_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,085 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x7fc9a32cadf8>> on doc pair StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,085 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,112 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503970981632 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,113 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,113 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,159 3493 140502758299392 DEBUG nxdrive.engine.processor Executing processor on StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,159 3493 140502758299392 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x7fc9a32caf28>> on doc pair StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,160 3493 140502758299392 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,160 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,161 3493 140502758299392 TRACE nxdrive.engine.processor Entered _synchronize_locally_created, parent_pair = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,162 3493 140502758299392 DEBUG nxdrive.engine.processor Creating remote folder 'subfolder02' in folder 'Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,162 3493 140502758299392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.CreateFolder with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"name": "subfolder02", "overwrite": false, "parentId": "defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,172 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Released processor 140503970981632 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,190 3493 140502674437888 TRACE nxdrive.engine.processor Entered _synchronize_locally_created, parent_pair = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,190 3493 140502674437888 DEBUG nxdrive.engine.processor Creating remote document 'File02' in folder 'subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,194 3493 140502674437888 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"batchId":"batchId-53711414-3a2c-42d2-90b4-c1690d9291fc"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,194 3493 140502674437888 TRACE nxdrive.utils Could not guess mime type for 'File02', returing 'application/octet-stream' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,195 3493 140502674437888 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-53711414-3a2c-42d2-90b4-c1690d9291fc/0 with headers {'Content-Length': 5, 'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'X-File-Type': 'application/octet-stream', 'X-User-Id': 'driveuser_2', 'X-File-Size': 5, 'Cache-Control': 'no-cache', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'Content-Type': 'application/octet-stream', 'X-Application-Name': 'Nuxeo Drive', 'X-File-Name': 'File02', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] for file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,231 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,232 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,232 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,232 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,233 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> on known pair: StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,233 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Couldn't acquire processor 140503970981632 for row 6: either row does't exist or it is being processed 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,233 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Don't update as cannot acquire StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,234 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140503970981632 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,379 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=True 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,380 3493 140503412635392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,380 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": "22503", "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,387 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133645000,"hasTooManyChanges":false,"upperBound":22507,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,388 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,729 3493 140502758299392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.CreateFolder' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133645167,"folder":true,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133645167,"canDelete":true,"lockInfo":null,"name":"subfolder02","id":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,736 3493 140502674437888 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-53711414-3a2c-42d2-90b4-c1690d9291fc/0' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"uploaded":"true","fileIdx":"0","uploadedSize":"5","uploadType":"normal","batchId":"batchId-53711414-3a2c-42d2-90b4-c1690d9291fc"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,736 3493 140502674437888 TRACE nxdrive.client.base_automation_client Using 300 seconds [max(300, 2 * upload time=0)] as Nuxeo transaction timeout for batch execution of NuxeoDrive.CreateFile with file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,736 3493 140502674437888 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/api/v1/upload/batchId-53711414-3a2c-42d2-90b4-c1690d9291fc/0/execute/NuxeoDrive.CreateFile with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'X-Application-Name': 'Nuxeo Drive', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'Nuxeo-Transaction-Timeout': 300, 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"overwrite": false, "parentId": "defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,753 3493 140502758299392 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,753 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,754 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,754 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'subfolder02', uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 45), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,755 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:45,755 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=4, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:46,274 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:46,276 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:46,276 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:46,669 3493 140502758299392 TRACE nxdrive.engine.processor Put remote_ref in defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:46,670 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_name=None, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,661 3493 140504712013568 TRACE nxdrive.engine.queue_manager Init processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,662 3493 140502758299392 DEBUG nxdrive.engine.dao.sqlite Queuing 1 children of 'StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,662 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_moved, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,662 3493 140502758299392 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:0, State: locally_moved) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,663 3493 140502758299392 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,664 3493 140502758299392 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x7fc9a32caf28>> on doc pair StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,664 3493 140502758299392 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,664 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,665 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,665 3493 140502758299392 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502758299392 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,665 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,666 3493 140502758299392 DEBUG nxdrive.engine.workers Thread LocalFolderProcessor(140502758299392) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,666 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,666 3493 140502666045184 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,667 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,667 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,667 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,669 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:47,669 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:48,007 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:48,007 3493 140502775084800 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:48,010 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22503, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:48,023 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133648000,"hasTooManyChanges":false,"upperBound":22507,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:48,024 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,499 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502666045184 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,501 3493 140502666045184 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved)(1) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,502 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,506 3493 140502674437888 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/api/v1/upload/batchId-53711414-3a2c-42d2-90b4-c1690d9291fc/0/execute/NuxeoDrive.CreateFile' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02","digest":"ea7414289e36051205700d14b442408d","creationDate":1490133647657,"folder":false,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133647657,"canDelete":true,"lockInfo":null,"name":"File02","id":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,517 3493 140502666045184 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,518 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,816 3493 140502674437888 TRACE nxdrive.engine.processor Transfer speed 0 ko/s 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,816 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,817 3493 140502674437888 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,817 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, wd=5, mask=IN_ATTRIB, cookie=0, name=File02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,818 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) with info = RemoteFileInfo(name=u'File02', uid=u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 47), last_contributor=u'driveuser_2', digest=u'ea7414289e36051205700d14b442408d', digest_algorithm=u'md5', download_url=u'nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,818 3493 140503395849984 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, wd=5, mask=IN_ATTRIB, cookie=0, name=File02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,843 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:49,843 3493 140504712013568 DEBUG tests.common Sync Completed slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:50,339 3493 140503379064576 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:50,706 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:50,707 3493 140503412635392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:51,281 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Retry locked database #1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:52,860 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:52,861 3493 140502775084800 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:52,861 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22507, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:52,867 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133652000,"hasTooManyChanges":false,"upperBound":22507,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:52,867 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,189 3493 140502674437888 TRACE nxdrive.engine.processor Put remote_ref in defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,189 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, remote_name=None, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,212 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Result returned from try #2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,212 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> on known pair: StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,527 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_created of <nxdrive.engine.processor.Processor object at 0x7fc9a32cadf8>> on doc pair StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: None, Local state: created, Remote state: unknown, State: locally_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,528 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01/file02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,849 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503970981632 for row 6 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,850 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder02 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,850 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_ref=defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,851 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:53,851 3493 140502674437888 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,362 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 3, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,384 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Released processor 140503970981632 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,385 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,385 3493 140504712013568 DEBUG tests.common Sync Completed slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,386 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,386 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,386 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,387 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,387 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> on known pair: StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,396 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503970981632 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,400 3493 140503970981632 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,400 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, remote_ref=defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,405 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Released processor 140503970981632 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,406 3493 140503970981632 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,406 3493 140503970981632 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,439 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22507, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,445 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133654000,"hasTooManyChanges":false,"upperBound":22507,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,446 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,522 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Retry locked database #1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,653 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Result returned from try #2 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,654 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,655 3493 140502666045184 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_locally_moved of <nxdrive.engine.processor.Processor object at 0x7fc9bb9515a8>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,655 3493 140502666045184 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder02/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,656 3493 140502666045184 DEBUG nxdrive.engine.processor Moving remote file according to local : StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,657 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.Move with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"srcId": "defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2", "destId": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,674 3493 140502666045184 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.Move' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,675 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,676 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Push to queue: locally_moved, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,677 3493 140502666045184 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:False, State: locally_moved) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,677 3493 140502666045184 TRACE nxdrive.engine.queue_manager Pushed to _local_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,677 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01, remote_name=File01, version=1] with version=1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,678 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,678 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating local file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,678 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,679 3493 140502674437888 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,679 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,680 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,680 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,679 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,681 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,681 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,685 3493 140502666045184 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_locally_moved of <nxdrive.engine.processor.Processor object at 0x7fc9bb9515a8>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: moved, Remote state: synchronized, State: locally_moved) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,685 3493 140502666045184 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder02/file01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,686 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,687 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502666045184 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,687 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,687 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized)(1) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,687 3493 140502674437888 TRACE nxdrive.engine.processor Skip as pair is in non-processable state: StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,691 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Released processor 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:54,691 3493 140502674437888 DEBUG nxdrive.engine.workers Thread LocalFileProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:55,833 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.WaitForElasticsearchCompletion' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,404 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,404 3493 140502775084800 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,405 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22507, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,431 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133657000,"hasTooManyChanges":false,"upperBound":22534,"fileSystemChanges":[{"eventId":"documentMoved","eventDate":1490133654663,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133647657,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02","digest":"ea7414289e36051205700d14b442408d","creationDate":1490133647657,"folder":false,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133647657,"canDelete":true,"lockInfo":null,"name":"File02","id":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","userName":"driveuser_1"},"docUuid":"5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","fileSystemItemId":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","fileSystemItemName":"File02"},{"eventId":"documentCreated","eventDate":1490133645167,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133645167,"folder":true,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133645167,"canDelete":true,"lockInfo":null,"name":"subfolder02","id":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","userName":"driveuser_1"},"docUuid":"6cd64fc5-27f8-4d10-985d-b498af19fa63","fileSystemItemId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","fileSystemItemName":"subfolder02"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,431 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher 3 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,431 3493 140504712013568 DEBUG tests.common Remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,432 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentMoved', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133654663} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,432 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', eventId = documentMoved (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,432 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: modified, State: synchronized) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,432 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: modified, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,632 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_modified, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,632 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushing QueueItem[5](Folderish:False, State: remotely_modified) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,632 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,633 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_1', u'name': u'File02', u'canDelete': True, u'creator': u'driveuser_2', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133647657, u'id': u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'downloadURL': u'nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133647657, u'lastContributor': u'driveuser_2', u'canRename': True, u'digest': u'ea7414289e36051205700d14b442408d'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'fileSystemItemName': u'File02', u'repositoryId': u'default', u'docUuid': u'5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'eventDate': 1490133647657} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,633 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,633 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,634 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502674437888) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,634 3493 140502674437888 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,634 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,634 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,634 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,635 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,635 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,635 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,635 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,635 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,636 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,643 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502674437888 for row 5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,656 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,657 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushing QueueItem[6](Folderish:False, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,657 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushed to _remote_file_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,657 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,657 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,658 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,658 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,658 3493 140502666045184 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,658 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Marked doc_pair 'File02' as remote creation 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,659 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_1', u'canScrollDescendants': True, u'name': u'subfolder02', u'canDelete': True, u'creator': u'driveuser_2', u'lastModificationDate': 1490133645167, u'id': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'canCreateChild': True, u'parentId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'lockInfo': None, u'folder': True, u'creationDate': 1490133645167, u'lastContributor': u'driveuser_2', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'fileSystemItemName': u'subfolder02', u'repositoryId': u'default', u'docUuid': u'6cd64fc5-27f8-4d10-985d-b498af19fa63', u'eventDate': 1490133645167} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,659 3493 140502674437888 DEBUG nxdrive.engine.processor Executing processor on StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: modified, State: remotely_modified)(1) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,659 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating additional file processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,660 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,660 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,661 3493 140502674437888 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_modified of <nxdrive.engine.processor.Processor object at 0x7fc9bb9516d8>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: modified, State: remotely_modified) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,661 3493 140502674437888 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01/File01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,661 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,661 3493 140502657652480 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,662 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502666045184 for row 6 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,662 3493 140502666045184 DEBUG nxdrive.engine.processor Executing processor on StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,662 3493 140502666045184 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a3e85640>> on doc pair StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,663 3493 140502666045184 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,663 3493 140502674437888 DEBUG nxdrive.engine.processor No local impact of metadata update on document 'File01'. 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,663 3493 140502674437888 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,664 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01, remote_name=File01, version=1] with version=1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,664 3493 140502666045184 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,665 3493 140502666045184 DEBUG nxdrive.engine.processor Creating local file 'File02' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,667 3493 140502674437888 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_modified of <nxdrive.engine.processor.Processor object at 0x7fc9bb9516d8>> on doc pair StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: modified, State: remotely_modified) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,667 3493 140502674437888 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01/file01 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,669 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Push to queue: remotely_created, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,669 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushing QueueItem[7](Folderish:True, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,669 3493 140502775084800 TRACE nxdrive.engine.queue_manager Pushed to _remote_folder_queue, now of size: 1 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140504712013568 TRACE nxdrive.engine.queue_manager Launching processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140504712013568 DEBUG nxdrive.engine.queue_manager creating remote folder processor 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Marked doc_pair 'subfolder02' as remote creation 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Remote recursive scan of the content of subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140502674437888 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502674437888 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,670 3493 140502674437888 DEBUG nxdrive.engine.workers Thread RemoteFileProcessor(140502674437888) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,671 3493 140502657652480 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502657652480) start 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,671 3493 140502657652480 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,675 3493 140502657652480 TRACE nxdrive.engine.dao.sqlite Acquired processor 140502657652480 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,683 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is active, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,684 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1", "parentId": "defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,688 3493 140502657652480 DEBUG nxdrive.engine.processor Executing processor on StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: unknown, Remote state: created, State: remotely_created)(0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,688 3493 140502657652480 TRACE nxdrive.engine.processor Calling <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb322348>> on doc pair StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,688 3493 140502657652480 TRACE nxdrive.engine.processor Soft locking: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,689 3493 140502657652480 TRACE nxdrive.engine.processor readonly unlock: unlock on /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,689 3493 140502657652480 DEBUG nxdrive.engine.processor Creating local folder 'subfolder02' in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,690 3493 140502666045184 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02","digest":"ea7414289e36051205700d14b442408d","creationDate":1490133647657,"folder":false,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133647657,"canDelete":true,"lockInfo":null,"name":"File02","id":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,691 3493 140502666045184 TRACE nxdrive.client.base_automation_client Downloading file from u'http://localhost:8080/nuxeo/nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02' to u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart' with digest=ea7414289e36051205700d14b442408d, digest_algorithm=md5 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,691 3493 140502666045184 TRACE nxdrive.client.base_automation_client Calling 'http://localhost:8080/nuxeo/nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02' with headers: {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,692 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_CREATE|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,693 3493 140502657652480 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,693 3493 140502657652480 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,694 3493 140502657652480 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,695 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,695 3493 140502666045184 TRACE nxdrive.engine.processor Transfer speed 0 ko/s 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,695 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,696 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=5, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,696 3493 140503412635392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,697 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart, wd=4, mask=IN_CREATE, cookie=0, name=.File02140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,697 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=3, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=subfolder02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,697 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, wd=5, mask=IN_ATTRIB|IN_ISDIR, cookie=0, name=> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,697 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart, wd=4, mask=IN_MODIFY, cookie=0, name=.File02140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,698 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22507, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,699 3493 140502657652480 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_ref=defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,700 3493 140502657652480 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder02' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,701 3493 140502657652480 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_name=subfolder02, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,703 3493 140502657652480 DEBUG nxdrive.engine.dao.sqlite Queuing 1 children of 'StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: unknown, Remote state: created, State: remotely_created)' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,703 3493 140502657652480 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,703 3493 140502657652480 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9bb322348>> on doc pair StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,703 3493 140502657652480 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,704 3493 140502657652480 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502657652480 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,704 3493 140502657652480 DEBUG nxdrive.engine.workers Thread RemoteFolderProcessor(140502657652480) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,705 3493 140502666045184 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,706 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart, wd=4, mask=IN_ATTRIB, cookie=0, name=.File02140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,707 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart, wd=4, mask=IN_MOVED_FROM, cookie=33662963, name=.File02140502666045184.nxpart> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,707 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, wd=4, mask=IN_MOVED_TO, cookie=33662963, name=File02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,708 3493 140502666045184 TRACE nxdrive.engine.processor readonly lock: update lock count on /Nuxeo Drive Test Workspace/Folder01/subfolder01 to 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,709 3493 140502666045184 TRACE nxdrive.engine.processor readonly lock: relocked path: /Nuxeo Drive Test Workspace/Folder01/subfolder01 with 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,709 3493 140502666045184 TRACE nxdrive.client.local_client Setting xattr ndrive with value 'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1' on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,709 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, wd=4, mask=IN_ATTRIB, cookie=0, name=File02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,710 3493 140502808655616 DEBUG watchdog.observers.inotify_buffer in-event <InotifyEvent: src_path=/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, wd=4, mask=IN_ATTRIB, cookie=0, name=File02> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,711 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: unknown, Remote state: created, State: remotely_created) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, remote_ref=defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,716 3493 140502666045184 DEBUG nxdrive.engine.processor Unsetting u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02' as readonly 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,717 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133657000,"hasTooManyChanges":false,"upperBound":22534,"fileSystemChanges":[{"eventId":"documentMoved","eventDate":1490133654663,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"},"docUuid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemId":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","fileSystemItemName":"File01"},{"eventId":"documentCreated","eventDate":1490133647657,"repositoryId":"default","fileSystemItem":{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02","digest":"ea7414289e36051205700d14b442408d","creationDate":1490133647657,"folder":false,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133647657,"canDelete":true,"lockInfo":null,"name":"File02","id":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","userName":"driveuser_2"},"docUuid":"5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","fileSystemItemId":"defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","fileSystemItemName":"File02"},{"eventId":"documentCreated","eventDate":1490133645167,"repositoryId":"default","fileSystemItem":{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133645167,"folder":true,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133645167,"canDelete":true,"lockInfo":null,"name":"subfolder02","id":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","userName":"driveuser_2"},"docUuid":"6cd64fc5-27f8-4d10-985d-b498af19fa63","fileSystemItemId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","fileSystemItemName":"subfolder02"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,717 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher 3 remote changes detected 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,718 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentMoved', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_2', u'name': u'File01', u'canDelete': True, u'creator': u'driveuser_1', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133624762, u'id': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'downloadURL': u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'parentId': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'lockInfo': None, u'folder': False, u'creationDate': 1490133624735, u'lastContributor': u'driveuser_1', u'canRename': True, u'digest': u'a1d0c6e83f027327d8461063f4ac58a6'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'fileSystemItemName': u'File01', u'repositoryId': u'default', u'docUuid': u'cf8b34a8-ab73-4801-84cb-77f8bce49fc2', u'eventDate': 1490133654663} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,718 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', eventId = documentMoved (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,718 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,719 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'canUpdate': True, u'userName': u'driveuser_2', u'name': u'File02', u'canDelete': True, u'creator': u'driveuser_2', u'digestAlgorithm': u'MD5', u'lastModificationDate': 1490133647657, u'id': u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'downloadURL': u'nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'parentId': u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', u'lockInfo': None, u'folder': False, u'creationDate': 1490133647657, u'lastContributor': u'driveuser_2', u'canRename': True, u'digest': u'ea7414289e36051205700d14b442408d'}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'fileSystemItemName': u'File02', u'repositoryId': u'default', u'docUuid': u'5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', u'eventDate': 1490133647657} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,719 3493 140504712013568 DEBUG tests.common Remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,720 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', eventId = documentCreated (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,720 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Updating remote state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'File02', uid=u'defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', parent_uid=u'defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8/defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 47), last_contributor=u'driveuser_2', digest=u'ea7414289e36051205700d14b442408d', digest_algorithm=u'md5', download_url=u'nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/blobholder:0/File02', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) (force: False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,720 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite Try to synchronize state for [local_path=/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, remote_name=File02, version=0] with version=0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,720 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Increasing version to 1 for pair StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,724 3493 140502666045184 TRACE nxdrive.engine.processor Finish <bound method Processor._synchronize_remotely_created of <nxdrive.engine.processor.Processor object at 0x7fc9a3e85640>> on doc pair StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: unknown, Remote state: created, State: remotely_created) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,724 3493 140502666045184 TRACE nxdrive.engine.processor Soft unlocking: /nuxeo drive test workspace/folder01/subfolder01/file02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,724 3493 140502666045184 TRACE nxdrive.engine.dao.sqlite No processor to release with id 140502666045184 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,725 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,725 3493 140502666045184 DEBUG nxdrive.engine.workers Thread GenericProcessor(140502666045184) end 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,725 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Processing event: {u'eventId': u'documentCreated', u'fileSystemItem': {u'userName': u'driveuser_2', u'canScrollDescendants': True, u'name': u'subfolder02', u'canDelete': True, u'creator': u'driveuser_2', u'lastModificationDate': 1490133645167, u'id': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'path': u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'canCreateChild': True, u'parentId': u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', u'lockInfo': None, u'folder': True, u'creationDate': 1490133645167, u'lastContributor': u'driveuser_2', u'canRename': True}, u'fileSystemItemId': u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', u'fileSystemItemName': u'subfolder02', u'repositoryId': u'default', u'docUuid': u'6cd64fc5-27f8-4d10-985d-b498af19fa63', u'eventDate': 1490133645167} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,726 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Refreshing remote state info for doc_pair '/Nuxeo Drive Test Workspace/Folder01/subfolder02', eventId = documentCreated (force_recursion:0) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,726 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'subfolder02', uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', parent_uid=u'defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', folderish=True, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 45), last_contributor=u'driveuser_2', digest=None, digest_algorithm=None, download_url=None, can_rename=True, can_delete=True, can_update=False, can_create_child=True, lock_owner=None, lock_created=None, can_scroll_descendants=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,726 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Force scan recursive on StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) : 0 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,726 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,727 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,727 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,727 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,743 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"1d13456e-bf1c-4bee-8dab-16dba689110d","fileSystemItems":[{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_2"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,743 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved 1 descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63), took 15 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,743 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,743 3493 140503412635392 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,743 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Local processing of descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) took 0 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,744 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,744 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "scrollId": "1d13456e-bf1c-4bee-8dab-16dba689110d", "id": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,747 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"1d13456e-bf1c-4bee-8dab-16dba689110d","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,747 3493 140503412635392 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63), took 3 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:57,752 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 0, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,241 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,241 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,242 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,243 3493 140503999833856 TRACE nxdrive.engine.watcher.local_watcher Queueing watchdog: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,246 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,246 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,246 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> on known pair: StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,375 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,377 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Created event on a known pair with a remote_ref: StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,377 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder02 (watchdog event [created]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,377 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_ref=defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,386 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,386 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,387 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,387 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,387 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,388 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01'> on known pair: StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,398 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 3 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,399 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,399 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01, remote_ref=defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,409 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,409 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,409 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[3](Local: u'/Nuxeo Drive Test Workspace/Folder01', Remote: defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,409 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,409 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,410 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> on known pair: StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,411 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,412 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder02 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,412 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_ref=defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,416 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,416 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,416 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,417 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileCreatedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,417 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [created] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,417 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,417 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,418 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,419 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,420 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,420 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,423 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,423 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,423 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,423 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,424 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,424 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02'> on known pair: StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,426 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,427 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder02 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,427 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder02, remote_ref=defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,434 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,434 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[7](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder02', Remote: defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileMovedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart', dest_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [moved] on /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/.File02140502666045184.nxpart to /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,435 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,436 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <DirModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01'> on known pair: StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,439 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 4 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,439 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Unchanged folder /Nuxeo Drive Test Workspace/Folder01/subfolder01 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,440 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01, remote_ref=defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,628 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,628 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,628 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[4](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01', Remote: defaultFileSystemItemFactory#default#bce9a1ce-5fd2-45f7-add4-262dc09ef8a8, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,629 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event: <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,629 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Handling watchdog event [modified] on u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,629 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher watchdog event <FileModifiedEvent: src_path=u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02'> on known pair: StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,633 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Acquired processor 140503404242688 for row 6 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,635 3493 140503404242688 DEBUG nxdrive.engine.watcher.local_watcher Digest has not changed for /Nuxeo Drive Test Workspace/Folder01/subfolder01/File02 (watchdog event [modified]), only update last_local_updated 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,635 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Updating local state for row = StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = FileInfo[/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/Nuxeo Drive/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02, remote_ref=defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,643 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Released processor 140503404242688 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,643 3493 140503404242688 TRACE nxdrive.engine.watcher.local_watcher Re-queuing acquired, released and refreshed state StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:00:58,643 3493 140503404242688 TRACE nxdrive.engine.dao.sqlite Will not push pair: synchronized, pair=StateRow[6](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File02', Remote: defaultFileSystemItemFactory#default#5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1, Local state: synchronized, Remote state: synchronized, State: synchronized) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,744 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,744 3493 140502775084800 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,819 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,820 3493 140503412635392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,820 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22534, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,828 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133660000,"hasTooManyChanges":false,"upperBound":22546,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:00,828 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,272 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Continue full scan of /org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/ 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,272 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"id": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,276 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetFileSystemItem' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"canScrollDescendants":true,"canCreateChild":true,"creationDate":1490133645167,"folder":true,"creator":"driveuser_2","parentId":"defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","canRename":true,"lastContributor":"driveuser_2","lastModificationDate":1490133645167,"canDelete":true,"lockInfo":null,"name":"subfolder02","id":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","userName":"driveuser_1"}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,356 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,357 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Performing scroll remote scan for subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,357 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Remote scanning: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,358 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,359 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "id": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,368 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"908e6f67-ded5-4965-88e9-ac0e6f3e2596","fileSystemItems":[{"digestAlgorithm":"MD5","canUpdate":true,"downloadURL":"nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01","digest":"a1d0c6e83f027327d8461063f4ac58a6","creationDate":1490133624735,"folder":false,"creator":"driveuser_1","parentId":"defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63","canRename":true,"lastContributor":"driveuser_1","lastModificationDate":1490133624762,"canDelete":true,"lockInfo":null,"name":"File01","id":"defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2","userName":"driveuser_1"}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,368 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved 1 descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63), took 10 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,369 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Handling remote descendant: RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,369 3493 140502775084800 TRACE nxdrive.engine.dao.sqlite Not updating remote state (not dirty) for row = StateRow[5](Local: u'/Nuxeo Drive Test Workspace/Folder01/subfolder01/File01', Remote: defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2, Local state: synchronized, Remote state: synchronized, State: synchronized) with info = RemoteFileInfo(name=u'File01', uid=u'defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', parent_uid=u'defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63', path=u'/org.nuxeo.drive.service.impl.DefaultTopLevelFolderItemFactory#/defaultSyncRootFolderItemFactory#default#5a05963d-0dc4-4000-b714-fec6550f3952/defaultFileSystemItemFactory#default#c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6/defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63/defaultFileSystemItemFactory#default#cf8b34a8-ab73-4801-84cb-77f8bce49fc2', folderish=False, last_modification_time=datetime.datetime(2017, 3, 21, 22, 0, 24), last_contributor=u'driveuser_1', digest=u'a1d0c6e83f027327d8461063f4ac58a6', digest_algorithm=u'md5', download_url=u'nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/blobholder:0/File01', can_rename=True, can_delete=True, can_update=True, can_create_child=False, lock_owner=None, lock_created=None, can_scroll_descendants=False) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,369 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Local processing of descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) took 0 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,369 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Scrolling through at most [100] descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,370 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"batchSize": 100, "scrollId": "908e6f67-ded5-4965-88e9-ac0e6f3e2596", "id": "defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,375 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.ScrollDescendants' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"scrollId":"908e6f67-ded5-4965-88e9-ac0e6f3e2596","fileSystemItems":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,376 3493 140502775084800 TRACE nxdrive.engine.watcher.remote_watcher Remote scroll request retrieved no descendants of subfolder02 (defaultFileSystemItemFactory#default#6cd64fc5-27f8-4d10-985d-b498af19fa63), took 6 ms 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,376 3493 140502775084800 DEBUG nxdrive.engine.watcher.remote_watcher Remote scan_pair ended: /Nuxeo Drive Test Workspace/Folder01/subfolder02 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:01,848 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:02,331 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:02,331 3493 140504712013568 DEBUG tests.common Sync Completed slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:03,666 3493 140502775084800 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': 'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22534, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:03,676 3493 140502775084800 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133663000,"hasTooManyChanges":false,"upperBound":22546,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:03,676 3493 140504712013568 TRACE tests.common No remote changes slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:03,850 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 1, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,132 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,132 3493 140504712013568 DEBUG tests.common Sync Completed slot for: bfd6f0960e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,844 3493 140504405444352 DEBUG tests.common Sync completed, _wait_remote_scan = {u'bfd6f0960e8111e7acac0242ac11000d': True, u'c08399cc0e8111e7acac0242ac11000d': True}, remote changes count = {u'bfd6f0960e8111e7acac0242ac11000d': 3, u'c08399cc0e8111e7acac0242ac11000d': 3}, no remote changes = {u'bfd6f0960e8111e7acac0242ac11000d': True, u'c08399cc0e8111e7acac0242ac11000d': True} 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,844 3493 140504405444352 DEBUG tests.common Ended wait for sync, setting _wait_remote_scan values to True, _remote_changes_count values to 0 and _no_remote_changes values to False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,846 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Query with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"query": "SELECT * FROM Document WHERE ecm:parentId = \'c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6\' AND ecm:primaryType IN (\'File\', \'Note\', \'Workspace\', \'Folder\') AND ecm:currentLifeCycleState != \'deleted\' ORDER BY dc:title, dc:created LIMIT 1000"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,858 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Query' with cookies []: '{"entity-type":"documents","isPaginable":true,"resultsCount":2,"pageSize":0,"maxPageSize":1000,"currentPageSize":2,"currentPageIndex":0,"numberOfPages":1,"isPreviousPageAvailable":false,"isNextPageAvailable":false,"isLastPageAvailable":false,"isSortable":true,"hasError":false,"errorMessage":null,"totalSize":2,"pageIndex":0,"pageCount":1,"entries":[{"entity-type":"document","repository":"default","uid":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01","type":"Folder","state":"project","parentRef":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624715","title":"subfolder01","lastModified":"2017-03-21T22:00:24.715Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.715Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.715Z","dc:title":"subfolder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]},{"entity-type":"document","repository":"default","uid":"6cd64fc5-27f8-4d10-985d-b498af19fa63","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder02","type":"Folder","state":"project","parentRef":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133645167","title":"subfolder02","lastModified":"2017-03-21T22:00:45.167Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_2","dc:modified":"2017-03-21T22:00:45.167Z","dc:lastContributor":"driveuser_2","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:45.167Z","dc:title":"subfolder02","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_2"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,859 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,865 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01","type":"Folder","state":"project","parentRef":"5a05963d-0dc4-4000-b714-fec6550f3952","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624698","title":"Folder01","lastModified":"2017-03-21T22:00:24.698Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.698Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.698Z","dc:title":"Folder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,866 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Fetch with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"value": "/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,869 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Fetch' with cookies []: '{"entity-type":"document","repository":"default","uid":"c461a6ce-cd70-4dc0-bc6f-d2bd3fb40ba6","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01","type":"Folder","state":"project","parentRef":"5a05963d-0dc4-4000-b714-fec6550f3952","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624698","title":"Folder01","lastModified":"2017-03-21T22:00:24.698Z","properties":{"common:icon-expanded":null,"common:icon":"/icons/folder.gif","dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.698Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.698Z","dc:title":"Folder01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null},"facets":["Folderish"]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,870 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Query with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"query": "SELECT * FROM Document WHERE ecm:path = \'/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File02\' AND ecm:currentLifeCycleState != \'deleted\' AND ecm:isCheckedInVersion = 0 LIMIT 1"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,882 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Query' with cookies []: '{"entity-type":"documents","isPaginable":true,"resultsCount":1,"pageSize":0,"maxPageSize":1000,"currentPageSize":1,"currentPageIndex":0,"numberOfPages":1,"isPreviousPageAvailable":false,"isNextPageAvailable":false,"isLastPageAvailable":false,"isSortable":true,"hasError":false,"errorMessage":null,"totalSize":1,"pageIndex":0,"pageCount":1,"entries":[{"entity-type":"document","repository":"default","uid":"5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File02","type":"File","state":"project","parentRef":"bce9a1ce-5fd2-45f7-add4-262dc09ef8a8","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133647657","title":"File02","lastModified":"2017-03-21T22:00:47.657Z","properties":{"uid:uid":null,"uid:major_version":0,"uid:minor_version":0,"thumb:thumbnail":{"name":"3d64ff577e23183c5cfb1007bc07ff59","mime-type":"image/png","encoding":null,"digestAlgorithm":"MD5","digest":"3d64ff577e23183c5cfb1007bc07ff59","length":"484","data":"http://localhost:8080/nuxeo/nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/thumb:thumbnail/3d64ff577e23183c5cfb1007bc07ff59"},"file:content":{"name":"File02","mime-type":"text/plain","encoding":null,"digestAlgorithm":"MD5","digest":"ea7414289e36051205700d14b442408d","length":"5","data":"http://localhost:8080/nuxeo/nxfile/default/5ce3b4a4-fc4d-41dd-a071-b8fcb8a47ad1/file:content/File02"},"common:icon-expanded":null,"common:icon":"/icons/text.png","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_2","dc:modified":"2017-03-21T22:00:47.657Z","dc:lastContributor":"driveuser_2","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:47.657Z","dc:title":"File02","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_2"],"dc:source":null,"dc:publisher":null,"relatedtext:relatedtextresources":[]},"facets":["Versionable","Publishable","Commentable","HasRelatedText","Thumbnail","Downloadable"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,882 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Blob.Get with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder01/File02", "params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,886 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Blob.Get' with cookies [] has content-type 'text/plain' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,886 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Document.Query with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"params": {"query": "SELECT * FROM Document WHERE ecm:path = \'/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder02/File01\' AND ecm:currentLifeCycleState != \'deleted\' AND ecm:isCheckedInVersion = 0 LIMIT 1"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,892 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Document.Query' with cookies []: '{"entity-type":"documents","isPaginable":true,"resultsCount":1,"pageSize":0,"maxPageSize":1000,"currentPageSize":1,"currentPageIndex":0,"numberOfPages":1,"isPreviousPageAvailable":false,"isNextPageAvailable":false,"isLastPageAvailable":false,"isSortable":true,"hasError":false,"errorMessage":null,"totalSize":1,"pageIndex":0,"pageCount":1,"entries":[{"entity-type":"document","repository":"default","uid":"cf8b34a8-ab73-4801-84cb-77f8bce49fc2","path":"/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder02/File01","type":"File","state":"project","parentRef":"6cd64fc5-27f8-4d10-985d-b498af19fa63","isCheckedOut":true,"isVersion":false,"isProxy":false,"changeToken":"1490133624762","title":"File01","lastModified":"2017-03-21T22:00:24.762Z","properties":{"uid:uid":null,"uid:major_version":0,"uid:minor_version":0,"thumb:thumbnail":{"name":"cc72256e098cbc71fdde51351fb1f65e","mime-type":"image/png","encoding":null,"digestAlgorithm":"MD5","digest":"cc72256e098cbc71fdde51351fb1f65e","length":"428","data":"http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/thumb:thumbnail/cc72256e098cbc71fdde51351fb1f65e"},"file:content":{"name":"File01","mime-type":"text/plain","encoding":null,"digestAlgorithm":"MD5","digest":"a1d0c6e83f027327d8461063f4ac58a6","length":"2","data":"http://localhost:8080/nuxeo/nxfile/default/cf8b34a8-ab73-4801-84cb-77f8bce49fc2/file:content/File01"},"common:icon-expanded":null,"common:icon":"/icons/text.png","files:files":[],"dc:description":null,"dc:language":null,"dc:coverage":null,"dc:valid":null,"dc:creator":"driveuser_1","dc:modified":"2017-03-21T22:00:24.762Z","dc:lastContributor":"driveuser_1","dc:rights":null,"dc:expired":null,"dc:format":null,"dc:created":"2017-03-21T22:00:24.735Z","dc:title":"File01","dc:issued":null,"dc:nature":null,"dc:subjects":[],"dc:contributors":["driveuser_1"],"dc:source":null,"dc:publisher":null,"relatedtext:relatedtextresources":[]},"facets":["Versionable","Publishable","Commentable","HasRelatedText","Thumbnail","Downloadable"]}]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,893 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/Blob.Get with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-device-1', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic ZHJpdmV1c2VyXzE6N2FhZGEx'}, cookies [] and JSON payload '{"input": "doc:/default-domain/workspaces/nuxeo-drive-test-workspace/Folder01/subfolder02/File01", "params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,894 3493 140503412635392 DEBUG nxdrive.engine.watcher.remote_watcher Handle remote changes, first_pass=False 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,894 3493 140503412635392 TRACE nxdrive.engine.engine Engine.get_remote_client(filtered=True) 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,895 3493 140503412635392 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary with headers {'X-Authentication-Token': '104c3216-be30-4993-ac06-14f32a950dbb', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'}, cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] and JSON payload '{"params": {"lowerBound": 22546, "lastSyncActiveRootDefinitions": "default:5a05963d-0dc4-4000-b714-fec6550f3952"}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,899 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/Blob.Get' with cookies [] has content-type 'text/plain' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,901 3493 140504405444352 DEBUG nxdrive.report Create report 'tests.test_synchronization.TestSynchronization.test_rename_and_create_same_folder_not_running' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,901 3493 140504405444352 DEBUG nxdrive.report Manager metrics: '{'tracking': False, 'python_version': '2.7.13', 'appname': 'Nuxeo Drive', 'auto_update': True, 'qt_version': '4.8.7', 'tracker_id': '', 'platform': 'Linux', 'version': '2.2-dev', 'pyqt_version': '4.12', 'auto_start': True, 'beta_channel': False, 'device_id': 'bc8486100e8111e7acac0242ac11000d'}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,903 3493 140503412635392 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.GetChangeSummary' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)]: '{"activeSynchronizationRootDefinitions":"default:5a05963d-0dc4-4000-b714-fec6550f3952","syncDate":1490133664000,"hasTooManyChanges":false,"upperBound":22548,"fileSystemChanges":[]}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,904 3493 140504712013568 TRACE tests.common No remote changes slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,905 3493 140504405444352 TRACE nxdrive.engine.dao.sqlite Cache Syncing count incorrect should be 0 was 7 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:04,905 3493 140504405444352 DEBUG nxdrive.report Engine metrics: '{'files_size': 7, 'sync_files': 2, 'syncing': 0, 'error_files': 0, 'conflicted_files': 0, 'sync_folders': 5, 'invalid_credentials': False, 'unsynchronized_files': 0}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,262 3493 140504712013568 DEBUG nxdrive.engine.engine Checking sync completed: queue manager is inactive, overall size = 0, empty polls count = 2, local watcher empty events = 1, blacklist = 0, not Windows 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,289 3493 140504405444352 DEBUG tests.common Report generated in '/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/sources/tests.test_synchronization.TestSynchronization.test_rename_and_create_same_folder_not_running' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,290 3493 140504405444352 DEBUG tests.common TearDown unit test 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,290 3493 140504405444352 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,290 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d stopping 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,299 3493 140502775084800 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140502775084800) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,299 3493 140503404242688 INFO nxdrive.engine.watcher.local_watcher Stopping FS Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,418 3493 140504712013568 DEBUG nxdrive.engine.engine Emitting syncCompleted for engine c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,419 3493 140504712013568 DEBUG tests.common Sync Completed slot for: c08399cc0e8111e7acac0242ac11000d 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:05,419 3493 140504712013568 TRACE nxdrive.engine.queue_manager Shutdown processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:06,262 3493 140503404242688 INFO nxdrive.engine.watcher.local_watcher Stopping FS root Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,148 3493 140503404242688 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503404242688) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,149 3493 140504405444352 DEBUG nxdrive.engine.engine Engine bfd6f0960e8111e7acac0242ac11000d stopped 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,151 3493 140504405444352 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,152 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': u'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,176 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=GNU%2FLinux+Desktop&revoke=true&deviceId=bc8486100e8111e7acac0242ac11000d&permission=ReadWrite with headers {'X-Authentication-Token': u'b62b6b6f-b795-477d-b59e-f2235f2020d9', 'X-Device-Id': 'bc8486100e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_1', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,180 3493 140504405444352 TRACE nxdrive.client.base_automation_client Got token 'Token revoked for userName driveuser_1, applicationName Nuxeo Drive and deviceId bc8486100e8111e7acac0242ac11000d.' with cookies [Cookie(version=0, name='X-Authentication-Token', value='b62b6b6f-b795-477d-b59e-f2235f2020d9', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,180 3493 140504405444352 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/ndrive_bfd6f0960e8111e7acac0242ac11000d.db' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,182 3493 140504405444352 DEBUG nxdrive.engine.engine Remove DB file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/ndrive_bfd6f0960e8111e7acac0242ac11000d.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,184 3493 140504405444352 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmpRWBfD_drive-1/nuxeo-drive-conf/manager.db' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,184 3493 140504405444352 DEBUG nxdrive.engine.queue_manager Suspending queue 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,184 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d stopping 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,187 3493 140503970981632 INFO nxdrive.engine.watcher.local_watcher Stopping FS Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,187 3493 140503412635392 DEBUG nxdrive.engine.workers Thread RemoteWatcher(140503412635392) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,188 3493 140504712013568 TRACE nxdrive.engine.queue_manager Shutdown processors 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:07,343 3493 140503970981632 INFO nxdrive.engine.watcher.local_watcher Stopping FS root Observer thread 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:08,132 3493 140503970981632 DEBUG nxdrive.engine.workers Thread LocalWatcher(140503970981632) interrupted 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:08,132 3493 140504405444352 DEBUG nxdrive.engine.engine Engine c08399cc0e8111e7acac0242ac11000d stopped 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:08,134 3493 140504405444352 TRACE nxdrive.client.base_automation_client Proxy configuration: System, effective proxy list: None 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:08,134 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/ with headers {'X-Authentication-Token': u'104c3216-be30-4993-ac06-14f32a950dbb', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:08,288 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/authentication/token?applicationName=Nuxeo+Drive&deviceDescription=GNU%2FLinux+Desktop&revoke=true&deviceId=beda915c0e8111e7acac0242ac11000d&permission=ReadWrite with headers {'X-Authentication-Token': u'104c3216-be30-4993-ac06-14f32a950dbb', 'X-Device-Id': 'beda915c0e8111e7acac0242ac11000d', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'driveuser_2', 'Cache-Control': 'no-cache', 'X-Application-Name': 'Nuxeo Drive', 'X-Client-Version': '2.2-dev'} and cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:09,238 3493 140504405444352 TRACE nxdrive.client.base_automation_client Got token 'Token revoked for userName driveuser_2, applicationName Nuxeo Drive and deviceId beda915c0e8111e7acac0242ac11000d.' with cookies [Cookie(version=0, name='X-Authentication-Token', value='104c3216-be30-4993-ac06-14f32a950dbb', port=None, port_specified=False, domain=u'localhost.local', domain_specified=False, domain_initial_dot=False, path='/nuxeo', path_specified=True, secure=True, expires=None, discard=True, comment=None, comment_url=None, rest={}, rfc2109=False)] 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:09,239 3493 140504405444352 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/ndrive_c08399cc0e8111e7acac0242ac11000d.db' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:09,243 3493 140504405444352 DEBUG nxdrive.engine.engine Remove DB file /opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/ndrive_c08399cc0e8111e7acac0242ac11000d.db 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:09,740 3493 140504405444352 DEBUG nxdrive.engine.dao.sqlite Disposing sqlite database u'/opt/jenkins/workspace/Drive_FT-drive_master-CUACR5UOIAO62W7K2CAAQ7UISS5UUL3SF5V2PSVOUZC4CRBQLRIA/tmp/tmp70mfQ0drive-2/nuxeo-drive-conf/manager.db' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:09,742 3493 140504405444352 TRACE nxdrive.client.base_automation_client Calling http://localhost:8080/nuxeo/site/automation/NuxeoDrive.TearDownIntegrationTests with headers {'X-Client-Version': '2.2-dev', 'X-NXproperties': '*', 'X-NXDocumentProperties': '*', 'X-Device-Id': u'nxdrive-test-administrator-device', 'Accept': 'application/json+nxentity, */*', 'User-Agent': 'Nuxeo Drive/2.2-dev', 'X-User-Id': 'Administrator', 'Cache-Control': 'no-cache', 'Content-Type': 'application/json+nxrequest', 'X-Application-Name': 'Nuxeo Drive', 'Authorization': 'Basic QWRtaW5pc3RyYXRvcjpBZG1pbmlzdHJhdG9y'}, cookies [] and JSON payload '{"params": {}}' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:10,279 3493 140504405444352 TRACE nxdrive.client.base_automation_client Response for 'http://localhost:8080/nuxeo/site/automation/NuxeoDrive.TearDownIntegrationTests' with cookies [] has content-type '' 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:10,313 3493 140504405444352 DEBUG tests.common UnitTest thread finished 22:01:11 [SLAVE] [INFO] [exec] 2017-03-21 22:01:10,313 3493 140504712013568 DEBUG tests.common UnitTest run finished 22:01:11 [SLAVE] [INFO] [exec] !!!!!!!!!!!!!!!!!!!! Interrupted: stopping after 1 failures !!!!!!!!!!!!!!!!!!!! 22:01:11 [SLAVE] [INFO] [exec] ============= 1 failed, 183 passed, 24 skipped in 4408.15 seconds ==============
- is related to
-
NXDRIVE-769 Duplicate issue following the scenario from NXDRIVE-668
- Open
-
NXDRIVE-668 Fix upload issue with changes made while drive client is not running
- Resolved