Jump to content

Unreal Engine action


Mike

Recommended Posts

I'm messing around with connect and I'm finally getting some things to work, like launching Houdini.  That tutorial was great because it showed the structure so I was able to just plop it in my project and it worked.  I was then able to follow through the doc guide and change things around to see how it was all working.  I'd like to go a step further and try to apply what I've learned so I can launch Unreal Engine 4 (UE4).  I don't have any real plans or needs for totally integrating it into ftrack, I'd just like to see if I can launch it.  

Here is my project hierarchy right now.  I'd like to consolidate it a bit more, but whenever I move a module everything ends up breaking.

projectHi.JPG

Here is what I have to launch unreal.  I feel like it should work, but the action doesn't show up inside of Connect. Thanks for any help!

PS Sorry for the formatting, the white text turns black and I can't see the options to change the colors.

# :coding: utf-8
# :copyright: Copyright (c) 2015 ftrack
 
import logging
import sys
import pprint
import os
 
import ftrack
import ftrack_connect.application
 
mb_log = os.getenv('MB_LOG_DIR') 
logger = logging.getLogger()
handler = logging.FileHandler('%s/action.log' % mb_log)
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler) 
logger.setLevel(logging.DEBUG)
 
class UnrealAction(object):
	'''Launch Unreal action.'''
 
	# Unique action identifier.
	identifier = 'mb-unreal-launch-action'
 
	def __init__(self, applicationStore, launcher):
		'''Initialise action with *applicationStore* and *launcher*.
 
		*applicationStore* should be an instance of
		:class:`ftrack_connect.application.ApplicationStore`.
 
		*launcher* should be an instance of
		:class:`ftrack_connect.application.ApplicationLauncher`.
 
		'''
		super(UnrealAction, self).__init__()
 
		self.logger = logging.getLogger(
			__name__ + '.' + self.__class__.__name__
		)
 
		self.applicationStore = applicationStore
		self.launcher = launcher
 
		if self.identifier is None:
			raise ValueError('The action must be given an identifier.')
 
	def register(self):
		'''Register action to respond to discover and launch events.'''
		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.discover',
			self.discover
		)
 
		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.launch and data.actionIdentifier={0}'.format(
				self.identifier
			),
			self.launch
		)
 
 
 
	def discover(self, event):
		'''Return available actions based on *event*.
 
		Each action should contain
 
			actionIdentifier - Unique identifier for the action
			label - Nice name to display in ftrack
			variant - Variant or version of the application.
			icon(optional) - predefined icon or URL to an image
			applicationIdentifier - Unique identifier to identify application
									in store.
 
		'''
		items = []
		applications = self.applicationStore.applications
		applications = sorted(
			applications, key=lambda application: application['label']
		)
 
		for application in applications:
			applicationIdentifier = application['identifier']
			label = application['label']
			items.append({
				'actionIdentifier': self.identifier,
				'label': label,
				'variant': application.get('variant', None),
				'description': application.get('description', None),
				'icon': application.get('icon', 'default'),
				'applicationIdentifier': applicationIdentifier
			})

 
		return {
			'items': items
		}

	def launch(self, event):
		'''Callback method for Unreal action.'''
		applicationIdentifier = (
			event['data']['applicationIdentifier']
		)
 
		context = event['data'].copy()
 
		return self.launcher.launch(
			applicationIdentifier, context
		)
 
 
class ApplicationStore(ftrack_connect.application.ApplicationStore):
	'''Store used to find and keep track of available applications.'''
 
	def _discoverApplications(self):
		'''Return a list of applications that can be launched from this host.
		'''
		applications = []
 
		if sys.platform == 'darwin':
			prefix = ['/', 'Applications']
 
			applications.extend(self._searchFilesystem(
				expression=prefix + [
					'Unreal*', 'Unreal.app'
				],
				label='Unreal',
				variant='{version}',
				applicationIdentifier='unreal_{version}'
			))
 
		elif sys.platform == 'win32':
			prefix = ['C:\\', 'Program Files (x86)']
			self.logger.debug(
				'Prefix:\n{0}'.format(
					pprint.pformat(prefix)
				)
			)
			applications.extend(self._searchFilesystem(
				expression=(
					prefix +
					['Epic Games', '4.12', 'Engine', 'Binaries', 'Win64', 'UE4Editor.exe']
				),
				label='Unreal Engine',
				variant='{version}',
				applicationIdentifier='unreal_{version}'
			))
		expression=(
					prefix +
					['Epic Games', '4.12', 'Engine', 'Binaries', 'Win64', 'UE4Editor.exe']
				),
		self.logger.debug(
			'Expression:\n{0}'.format(
				pprint.pformat(expression)
			)
		)
		self.logger.debug(
			'Discovered applications:\n{0}'.format(
				pprint.pformat(applications)
			)
		)
 
		return applications
 
 
class ApplicationLauncher(ftrack_connect.application.ApplicationLauncher):
	'''Custom launcher to modify environment before launch.'''
 
	def _getApplicationEnvironment(
		self, application, context=None
	):
		'''Override to modify environment before launch.'''
 
		# Make sure to call super to retrieve original environment
		# which contains the selection and ftrack API.
		environment = super(
			ApplicationLauncher, self
		)._getApplicationEnvironment(application, context)
 
		# Append or Prepend values to the environment.
		# Note that if you assign manually you will overwrite any
		# existing values on that variable.
 
 
		# Add my custom path to the UNREAL_SCRIPT_PATH.
		environment = ftrack_connect.application.appendPath(
			'path/to/my/custom/scripts',
			'UNREAL_SCRIPT_PATH',
			environment
		)
 
		# Set an internal user id of some kind.
		environment = ftrack_connect.application.appendPath(
			'my-unique-user-id-123',
			'STUDIO_SPECIFIC_USERID',
			environment
		)
 
		# Always return the environment at the end.
		return environment
 
def register(registry, **kw):
	'''Register hooks.'''
 
	# Validate that registry is the correct ftrack.Registry. If not,
	# assume that register is being called with another purpose or from a
	# new or incompatible API and return without doing anything.
	if registry is not ftrack.EVENT_HANDLERS:
		# Exit to avoid registering this plugin again.
		return
 
	# Create store containing applications.
	applicationStore = ApplicationStore()
 
	# Create a launcher with the store containing applications.
	launcher = ApplicationLauncher(
		applicationStore
	)
 
	# Create action and register to respond to discover and launch actions.
	action = UnrealAction(applicationStore, launcher)
	action.register()

 

Link to comment
Share on other sites

Thanks Mattias,

How should I go about doing this on windows?  I've tried running from both Start>run and cmd prompt.  Both ways just start the ftrack connect app without taking into account my custom plugins and aren't providing any debug information (because I'm setting the environment variable when my ftrack connect launcher script is run)

 

Link to comment
Share on other sites

Hi,

until logging to file has been released you can work around it by simply setting up logging to file from one of your actions.

 

import logging
logger = logging.getLogger()
handler = logging.FileHandler('/tmp/action.log')
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler) 
logger.setLevel(logging.DEBUG)

 

Cheers

Link to comment
Share on other sites

Thanks for the reply Bjorn!

I'm having some trouble with getting this to work still.  When I place the chunk in an action (see below for example) the action breaks and doesn't show up in connect.  When I place the chunk in my launch script I get this error:   

[Errno 13] Permission denied: 'S:\\path\\to\\dir\\logs'

UPDATE

I figured out that the error was due to me putting 'S:' into the handler directory path.  So instead of inserting a file path like 

'S:/path/to/dir/logs'

Instead I had into insert the file path like this:

'/path/to/dir/logs'

FIXED CODE:

import logging
import os

import ftrack


class MessageAction(object):
	'''Launch Message action.'''

	# Unique action identifier.
	identifier = 'my-message-launch-action'

	def __init__(self):
		'''Initialise action.'''
		super(MessageAction, self).__init__()


		if self.identifier is None:
			raise ValueError('The action must be given an identifier.')

	def register(self):
		'''Register action.'''
		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.discover',
			self.discover
		)

		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.launch and data.actionIdentifier={0}'.format(
				self.identifier
			),
			self.launch
		)

	def discover(self, event):
		'''Return action based on *event*.'''
		return {
			'items': [{
				'label': 'Message',
				'actionIdentifier': self.identifier
			}]
		}

	def launch(self, event):
		'''Callback method for Message action.'''

		log_handler = logging.FileHandler(os.getenv('LOG_ROOT_DIR') + '/log_file.txt')
		log_handler.setFormatter(logging.Formatter( '%(asctime)s %(levelname)s: %(message)s ' '[in %(pathname)s:%(lineno)d]'))
		applogger = logging.getLogger('mb')
		applogger.setLevel(logging.DEBUG)
		applogger.addHandler(log_handler)
		applogger.info('Action executed for {0}'.format(event))

		return {
			'success': True,
			'message': 'Hello Mike!'
		}


def register(registry, **kw):
	'''Register action in Connect.'''

	# Validate that registry is the correct ftrack.Registry. If not,
	# assume that register is being called with another purpose or from a
	# new or incompatible API and return without doing anything.
	if registry is not ftrack.EVENT_HANDLERS:
		# Exit to avoid registering this plugin again.
		return

	action = MessageAction()
	action.register()

 

Link to comment
Share on other sites

Forgot to post a log,  its too big to attach so here it is.  Looks like its not discovering the application (even though the path is correct).:

2016-06-27 19:51:01,461 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:01,484 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:01,486 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:01,486 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:01,487 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:01,489 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:01,490 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:01,493 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:01,494 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:01,496 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:01,496 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:01,496 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:01,497 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:01,500 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:01,502 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:01,503 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:01,505 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:01,506 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:01,509 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:01,509 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:01,510 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:01,512 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:01,513 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:01,513 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:01,515 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:01,516 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:01,516 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:01,517 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:01,519 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:01,519 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:01,520 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:01,522 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:01,523 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:01,525 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:01,526 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:01,529 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:01,529 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:01,532 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:01,533 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:01,535 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:01,536 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:01,539 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:01,539 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:01,542 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:01,543 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:01,545 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:01,546 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:01,546 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:01,549 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:01,549 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:01,552 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:01,552 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:01,553 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:01,555 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:01,556 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:01,558 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:01,559 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:01,559 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:01,562 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:01,563 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:01,565 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:01,565 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:01,566 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:01,568 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:01,569 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:01,571 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:01,575 DEBUG Sent packet: 5:4+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "28469a6ac2024f7c8d5b38d6ad28132e", "user": {"username": "Mike"}}, "target": "", "inReplyToEvent": null, "data": {"subscriber": {"id": "5d03e3e1a2d44c7c9a41c94fc822ac58"}, "subscription": "topic=ftrack.storage-scenario.activate and data.storage_scenario.scenario=\"ftrack.centralized-storage\""}, "id": "e6af12478db047ca807d5a95ade9b969", "sent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,578 DEBUG Sent packet: 5:5+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "28469a6ac2024f7c8d5b38d6ad28132e", "user": {"username": "Mike"}}, "target": "", "inReplyToEvent": null, "data": {"subscriber": {"id": "5536e57181e64de197f2d674f7598698"}, "subscription": "topic=ftrack.connect.verify-startup and data.storage_scenario.scenario=\"ftrack.centralized-storage\""}, "id": "8bd50487ff7f4f309f1a477654f6b84f", "sent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,578 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:01,579 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 103140768
2016-06-27 19:51:01,581 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:01,582 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:01,582 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:01,584 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 103191048
2016-06-27 19:51:01,585 DEBUG Merging new data into attached entity.
2016-06-27 19:51:01,585 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:01,586 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:01,586 DEBUG Cache updated with merged entity.
2016-06-27 19:51:01,588 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:01,588 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 103194016
2016-06-27 19:51:01,589 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:01,591 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:01,592 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:01,592 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 103191160
2016-06-27 19:51:01,592 DEBUG Merging new data into attached entity.
2016-06-27 19:51:01,594 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:01,595 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:01,595 DEBUG Cache updated with merged entity.
2016-06-27 19:51:01,595 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:01,596 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 104003568
2016-06-27 19:51:01,596 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:01,598 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:01,598 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:01,598 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 104003904
2016-06-27 19:51:01,599 DEBUG Merging new data into attached entity.
2016-06-27 19:51:01,599 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:01,601 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:01,602 DEBUG Cache updated with merged entity.
2016-06-27 19:51:01,604 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:01,604 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 104004128
2016-06-27 19:51:01,605 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:01,607 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:01,607 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:01,608 DEBUG Received packet: 6:::4+[{"message": "", "success": true}]
2016-06-27 19:51:01,608 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 104004464
2016-06-27 19:51:01,611 DEBUG Merging new data into attached entity.
2016-06-27 19:51:01,611 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:01,611 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:01,612 DEBUG Cache updated with merged entity.
2016-06-27 19:51:01,617 DEBUG Sent packet: 5:6+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "28469a6ac2024f7c8d5b38d6ad28132e", "user": {"username": "Mike"}}, "target": "", "inReplyToEvent": null, "data": {"subscriber": {"id": "1bf2253f0c064e2a8c2c2920b419b2b9"}, "subscription": "topic=ftrack.storage-scenario.discover and source.user.username=\"Mike\""}, "id": "3dcb0a2e143b49269227ce3514b565a9", "sent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,619 DEBUG Sent packet: 5:7+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "28469a6ac2024f7c8d5b38d6ad28132e", "user": {"username": "Mike"}}, "target": "", "inReplyToEvent": null, "data": {"subscriber": {"id": "6197ff6ba1e8450cab21b643a18eefa9"}, "subscription": "topic=ftrack.storage-scenario.configure and data.scenario_id=\"ftrack.centralized-storage\" and source.user.username=\"Mike\""}, "id": "ced45ad7856e4a3c8feef4414bb326db", "sent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,621 INFO Reading config from C:\Users\mike.bourbeau\AppData\Local\ftrack\ftrack-connect\config.json
2016-06-27 19:51:01,641 DEBUG Received packet: 6:::5+[{"message": "", "success": true}]
2016-06-27 19:51:01,663 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:01,663 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:01,671 DEBUG Received packet: 6:::6+[{"message": "", "success": true}]
2016-06-27 19:51:01,671 DEBUG Received packet: 6:::6+[{"message": "", "success": true}]
2016-06-27 19:51:01,709 DEBUG Received packet: 6:::7+[{"message": "", "success": true}]
2016-06-27 19:51:01,709 DEBUG Received packet: 6:::7+[{"message": "", "success": true}]
2016-06-27 19:51:01,806 DEBUG "GET /socket.io/1/?api_user=Mike&api_key=d545801e-9076-4b38-a748-e7b2fa7be162 HTTP/1.1" 200 None
2016-06-27 19:51:01,806 DEBUG "GET /socket.io/1/?api_user=Mike&api_key=d545801e-9076-4b38-a748-e7b2fa7be162 HTTP/1.1" 200 None
2016-06-27 19:51:01,956 DEBUG Received packet: 1::
2016-06-27 19:51:01,956 DEBUG Received packet: 1::
2016-06-27 19:51:01,959 DEBUG Sent packet: 5:1+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f665f2641bb845c2b8c57a84cc41b6f2"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "6e527f97cf854c9383bcea80573df45b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,959 DEBUG Sent packet: 5:1+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f665f2641bb845c2b8c57a84cc41b6f2"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "6e527f97cf854c9383bcea80573df45b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,960 DEBUG Connected to event server.
2016-06-27 19:51:01,960 DEBUG Connected to event server.
2016-06-27 19:51:01,961 DEBUG Sent packet: 5:2+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "56457459b4a8475a8f0c0b9f1cd50974"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=cineSync.client.review.action and source.user.username=Mike"}, "id": "79afcbd2036a4d5ebfda1c251f9ff9f4", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,963 DEBUG Received packet: 3:::Welcome from the ftrack server.
2016-06-27 19:51:01,961 DEBUG Sent packet: 5:2+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "56457459b4a8475a8f0c0b9f1cd50974"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=cineSync.client.review.action and source.user.username=Mike"}, "id": "79afcbd2036a4d5ebfda1c251f9ff9f4", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,963 DEBUG Received packet: 3:::Welcome from the ftrack server.
2016-06-27 19:51:01,966 DEBUG Sent packet: 5:3+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "b975a0ff586c467ca3e462dde8570383"}, "subscription": "topic=ftrack.meta.reply"}, "id": "44a823f234ea438e9d2c1268ed5e769f", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,966 DEBUG Sent packet: 5:3+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "b975a0ff586c467ca3e462dde8570383"}, "subscription": "topic=ftrack.meta.reply"}, "id": "44a823f234ea438e9d2c1268ed5e769f", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:01,967 DEBUG Message received: Welcome from the ftrack server.
2016-06-27 19:51:01,967 DEBUG Message received: Welcome from the ftrack server.
2016-06-27 19:51:01,993 DEBUG Received packet: 6:::1+[{"message": "", "success": true}]
2016-06-27 19:51:01,993 DEBUG Received packet: 6:::1+[{"message": "", "success": true}]
2016-06-27 19:51:02,025 DEBUG Received packet: 6:::2+[{"message": "", "success": true}]
2016-06-27 19:51:02,025 DEBUG Received packet: 6:::2+[{"message": "", "success": true}]
2016-06-27 19:51:02,065 DEBUG Received packet: 6:::3+[{"message": "", "success": true}]
2016-06-27 19:51:02,065 DEBUG Received packet: 6:::3+[{"message": "", "success": true}]
2016-06-27 19:51:02,138 DEBUG Discovered applications:
[{'description': None,
  'icon': 'photoshop',
  'identifier': 'photoshop_cc_2014',
  'label': 'Photoshop',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe Photoshop CC 2014\\Photoshop.exe',
  'variant': 'CC 2014',
  'version': '2014'},
 {'description': None,
  'icon': 'premiere',
  'identifier': 'premiere_pro_cc_2014',
  'label': 'Premiere Pro',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe Premiere Pro CC 2014\\Adobe Premiere Pro.exe',
  'variant': 'CC 2014',
  'version': '2014'},
 {'description': None,
  'icon': 'after_effects',
  'identifier': 'after_effects_cc_2014',
  'label': 'After Effects',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe After Effects CC 2014\\Support Files\\AfterFX.exe',
  'variant': 'CC 2014',
  'version': '2014'}]
2016-06-27 19:51:02,138 DEBUG Discovered applications:
[{'description': None,
  'icon': 'photoshop',
  'identifier': 'photoshop_cc_2014',
  'label': 'Photoshop',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe Photoshop CC 2014\\Photoshop.exe',
  'variant': 'CC 2014',
  'version': '2014'},
 {'description': None,
  'icon': 'premiere',
  'identifier': 'premiere_pro_cc_2014',
  'label': 'Premiere Pro',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe Premiere Pro CC 2014\\Adobe Premiere Pro.exe',
  'variant': 'CC 2014',
  'version': '2014'},
 {'description': None,
  'icon': 'after_effects',
  'identifier': 'after_effects_cc_2014',
  'label': 'After Effects',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Adobe\\Adobe After Effects CC 2014\\Support Files\\AfterFX.exe',
  'variant': 'CC 2014',
  'version': '2014'}]
2016-06-27 19:51:02,142 DEBUG Sent packet: 5:4+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "abaf4449eb494845b6474a5ea1e2342f"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "4f98a7396794435f86ffb2f185a69de5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,142 DEBUG Sent packet: 5:4+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "abaf4449eb494845b6474a5ea1e2342f"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "4f98a7396794435f86ffb2f185a69de5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,148 DEBUG Sent packet: 5:5+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f4f79f08a9a74923860629a33bd1d605"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-adobe"}, "id": "67eaee2c9d2f402ba82b03db5a1d3861", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,148 DEBUG Sent packet: 5:5+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f4f79f08a9a74923860629a33bd1d605"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-adobe"}, "id": "67eaee2c9d2f402ba82b03db5a1d3861", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,151 DEBUG Sent packet: 5:6+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "cf09895165b14de08abc0e2565dfb52a"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "3b3f998db78d424f96ce8a1210530d5b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,151 DEBUG Sent packet: 5:6+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "cf09895165b14de08abc0e2565dfb52a"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "3b3f998db78d424f96ce8a1210530d5b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,163 DEBUG Sent packet: 5:7+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "7187fc1b52d94cc4b10deadfa244ab23"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "38950c0375dd4addad8949308cd5874c", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,163 DEBUG Sent packet: 5:7+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "7187fc1b52d94cc4b10deadfa244ab23"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "38950c0375dd4addad8949308cd5874c", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,176 DEBUG Received packet: 6:::4+[{"message": "", "success": true}]
2016-06-27 19:51:02,176 DEBUG Received packet: 6:::4+[{"message": "", "success": true}]
2016-06-27 19:51:02,191 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,191 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,196 DEBUG Sent packet: 5:8+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "131644540f4a4223aba8ece9b2e3128c"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "6fe75f7948c643c895fe2b75cad507a5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,196 DEBUG Sent packet: 5:8+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "131644540f4a4223aba8ece9b2e3128c"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "6fe75f7948c643c895fe2b75cad507a5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,200 DEBUG Sent packet: 5:9+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "8c37f4acea06411bba25f0b7733553e7"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-hieroplayer_with_review"}, "id": "2400babe432843a8b91c2a75985f45ee", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,200 DEBUG Sent packet: 5:9+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "8c37f4acea06411bba25f0b7733553e7"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-hieroplayer_with_review"}, "id": "2400babe432843a8b91c2a75985f45ee", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,206 DEBUG Not subscribing plugin as passed argument <FTrackCore.api.registry.Registry object at 0x00000000051EDEF0> is not an ftrack.Registry instance.
2016-06-27 19:51:02,206 DEBUG Not subscribing plugin as passed argument <FTrackCore.api.registry.Registry object at 0x00000000051EDEF0> is not an ftrack.Registry instance.
2016-06-27 19:51:02,209 DEBUG Received packet: 6:::5+[{"message": "", "success": true}]
2016-06-27 19:51:02,209 DEBUG Received packet: 6:::5+[{"message": "", "success": true}]
2016-06-27 19:51:02,217 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,217 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,220 DEBUG Sent packet: 5:10+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "294e1753ecd14fd3840127e7559d5c1e"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "9d7ebf90ccae4e04b536c0f66de7e228", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,220 DEBUG Sent packet: 5:10+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "294e1753ecd14fd3840127e7559d5c1e"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "9d7ebf90ccae4e04b536c0f66de7e228", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,223 DEBUG Sent packet: 5:11+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "89c8c90558584dd48fe932e8bb5223bc"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-rv"}, "id": "19114ec8e5764f4ba3aa4f52709bf62b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,223 DEBUG Sent packet: 5:11+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "89c8c90558584dd48fe932e8bb5223bc"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-rv"}, "id": "19114ec8e5764f4ba3aa4f52709bf62b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,226 DEBUG Sent packet: 5:12+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "7d1a0fbcda814b5fae5fd117aba2a256"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "c8b5477ebc204c4fb8ba0b88ee5dcd07", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,226 DEBUG Sent packet: 5:12+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "7d1a0fbcda814b5fae5fd117aba2a256"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "c8b5477ebc204c4fb8ba0b88ee5dcd07", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,237 DEBUG Discovered applications:
[{'description': None,
  'icon': 'cinema_4d',
  'identifier': 'cinema_4d_R16',
  'label': 'Cinema 4D',
  'launchArguments': [],
  'path': 'C:\\Program Files\\MAXON\\CINEMA 4D R16\\CINEMA 4D.exe',
  'variant': 'R16',
  'version': 'R16'}]
2016-06-27 19:51:02,237 DEBUG Discovered applications:
[{'description': None,
  'icon': 'cinema_4d',
  'identifier': 'cinema_4d_R16',
  'label': 'Cinema 4D',
  'launchArguments': [],
  'path': 'C:\\Program Files\\MAXON\\CINEMA 4D R16\\CINEMA 4D.exe',
  'variant': 'R16',
  'version': 'R16'}]
2016-06-27 19:51:02,237 DEBUG Received packet: 6:::6+[{"message": "", "success": true}]
2016-06-27 19:51:02,237 DEBUG Received packet: 6:::6+[{"message": "", "success": true}]
2016-06-27 19:51:02,242 DEBUG Received packet: 6:::7+[{"message": "", "success": true}]
2016-06-27 19:51:02,242 DEBUG Received packet: 6:::7+[{"message": "", "success": true}]
2016-06-27 19:51:02,242 DEBUG Sent packet: 5:13+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "65e1876818ad47f894926046fa3cc22a"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "066d0c1aadc24c05aac1960452296b26", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,242 DEBUG Sent packet: 5:13+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "65e1876818ad47f894926046fa3cc22a"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "066d0c1aadc24c05aac1960452296b26", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,246 DEBUG Sent packet: 5:14+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "9611ddce870f4a08904fa2cf4295c197"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-cinema-4d"}, "id": "c32086003df847f19d22134ca2550a6e", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,246 DEBUG Sent packet: 5:14+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "9611ddce870f4a08904fa2cf4295c197"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-cinema-4d"}, "id": "c32086003df847f19d22134ca2550a6e", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,250 DEBUG Not subscribing plugin as passed argument <FTrackCore.api.registry.Registry object at 0x00000000051EDEF0> is not an ftrack_api.Session instance.
2016-06-27 19:51:02,250 DEBUG Not subscribing plugin as passed argument <FTrackCore.api.registry.Registry object at 0x00000000051EDEF0> is not an ftrack_api.Session instance.
2016-06-27 19:51:02,269 DEBUG Received packet: 6:::8+[{"message": "", "success": true}]
2016-06-27 19:51:02,269 DEBUG Received packet: 6:::8+[{"message": "", "success": true}]
2016-06-27 19:51:02,273 DEBUG Received packet: 6:::9+[{"message": "", "success": true}]
2016-06-27 19:51:02,273 DEBUG Received packet: 6:::9+[{"message": "", "success": true}]
2016-06-27 19:51:02,289 DEBUG Discovered applications:
[{'description': None,
  'icon': 'nuke',
  'identifier': 'nuke_9.0v6',
  'label': 'Nuke',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'},
 {'description': None,
  'icon': 'nukex',
  'identifier': 'nukex_9.0v6',
  'label': 'NukeX',
  'launchArguments': ['--nukex'],
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'}]
2016-06-27 19:51:02,289 DEBUG Discovered applications:
[{'description': None,
  'icon': 'nuke',
  'identifier': 'nuke_9.0v6',
  'label': 'Nuke',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'},
 {'description': None,
  'icon': 'nukex',
  'identifier': 'nukex_9.0v6',
  'label': 'NukeX',
  'launchArguments': ['--nukex'],
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'}]
2016-06-27 19:51:02,293 DEBUG Sent packet: 5:15+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f32b056d7b114dcba70a6f1f5e264509"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "a3acc19b5c3144c8905949a27abdbc03", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,293 DEBUG Sent packet: 5:15+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f32b056d7b114dcba70a6f1f5e264509"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "a3acc19b5c3144c8905949a27abdbc03", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,299 DEBUG Received packet: 6:::10+[{"message": "", "success": true}]
2016-06-27 19:51:02,299 DEBUG Sent packet: 5:16+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "8abbd7b5714a4e169a8dbe6bc2abf6c4"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-nuke"}, "id": "0753c864068046c485a89494871de763", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,299 DEBUG Received packet: 6:::10+[{"message": "", "success": true}]
2016-06-27 19:51:02,299 DEBUG Sent packet: 5:16+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "8abbd7b5714a4e169a8dbe6bc2abf6c4"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-nuke"}, "id": "0753c864068046c485a89494871de763", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,302 DEBUG Received packet: 6:::11+[{"message": "", "success": true}]
2016-06-27 19:51:02,302 DEBUG Received packet: 6:::11+[{"message": "", "success": true}]
2016-06-27 19:51:02,303 DEBUG Received packet: 6:::12+[{"message": "", "success": true}]
2016-06-27 19:51:02,303 DEBUG Received packet: 6:::12+[{"message": "", "success": true}]
2016-06-27 19:51:02,305 DEBUG Sent packet: 5:17+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f6e637465cc44be0949becc1414fca63"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "cedd8444e20e46b6a52f955f9a1aee56", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,305 DEBUG Sent packet: 5:17+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f6e637465cc44be0949becc1414fca63"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "cedd8444e20e46b6a52f955f9a1aee56", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,328 DEBUG Received packet: 6:::13+[{"message": "", "success": true}]
2016-06-27 19:51:02,328 DEBUG Received packet: 6:::13+[{"message": "", "success": true}]
2016-06-27 19:51:02,332 DEBUG Received packet: 6:::14+[{"message": "", "success": true}]
2016-06-27 19:51:02,332 DEBUG Received packet: 6:::14+[{"message": "", "success": true}]
2016-06-27 19:51:02,334 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,334 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,336 DEBUG Legacy plugin path: S:\_management\_mb_Pipeline\mb_Ftrack\mb_Ftrack\modules\dependencies\ftrack_connect\resource\legacy_plugins
2016-06-27 19:51:02,336 DEBUG Legacy plugin path: S:\_management\_mb_Pipeline\mb_Ftrack\mb_Ftrack\modules\dependencies\ftrack_connect\resource\legacy_plugins
2016-06-27 19:51:02,339 DEBUG Sent packet: 5:18+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "44e9a93d930f40489ba273dca995f04a"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "fe21b51174d14cb19c6f8c04f61ce152", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,339 DEBUG Sent packet: 5:18+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "44e9a93d930f40489ba273dca995f04a"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "fe21b51174d14cb19c6f8c04f61ce152", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,345 DEBUG Sent packet: 5:19+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "3b81cec7b027413d9302ea6894257811"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-legacy-launch-application"}, "id": "007945035926437094c4108fa9cadc86", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,345 DEBUG Sent packet: 5:19+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "3b81cec7b027413d9302ea6894257811"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-legacy-launch-application"}, "id": "007945035926437094c4108fa9cadc86", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,346 DEBUG Sent packet: 5:20+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f74c66ccb3714ce1b3703650a589c75c"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "3341275f9d82459d8a1463796d675129", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,346 DEBUG Sent packet: 5:20+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f74c66ccb3714ce1b3703650a589c75c"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "3341275f9d82459d8a1463796d675129", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,351 DEBUG Sent packet: 5:21+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "91aa9cb35cb54cf1a92488497db67446"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "a0089b8ac3574d859b071dbb47e7bc81", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,351 DEBUG Sent packet: 5:21+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "91aa9cb35cb54cf1a92488497db67446"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "a0089b8ac3574d859b071dbb47e7bc81", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,355 DEBUG Sent packet: 5:22+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "a8c532681c764f4db53504ddceb0c9f8"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=cineSync.client.review.action and source.user.username=Mike"}, "id": "b21d187266c5469e99d1583b2bd997f0", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,355 DEBUG Sent packet: 5:22+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "a8c532681c764f4db53504ddceb0c9f8"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=cineSync.client.review.action and source.user.username=Mike"}, "id": "b21d187266c5469e99d1583b2bd997f0", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,358 DEBUG Received packet: 6:::15+[{"message": "", "success": true}]
2016-06-27 19:51:02,358 DEBUG Received packet: 6:::15+[{"message": "", "success": true}]
2016-06-27 19:51:02,371 DEBUG Discovered applications:
[{'description': None,
  'icon': 'nuke_studio',
  'identifier': 'nuke_studio_9.0v6',
  'label': 'Nuke Studio',
  'launchArguments': ['--studio'],
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'}]
2016-06-27 19:51:02,371 DEBUG Discovered applications:
[{'description': None,
  'icon': 'nuke_studio',
  'identifier': 'nuke_studio_9.0v6',
  'label': 'Nuke Studio',
  'launchArguments': ['--studio'],
  'path': 'C:\\Program Files\\Nuke9.0v6\\Nuke9.0.exe',
  'variant': '9.0v6',
  'version': '9.0v6'}]
2016-06-27 19:51:02,374 DEBUG Sent packet: 5:23+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "6e476960a0ce43ed8c1a5ae2407c611e"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "61b0121f05a541428ca291b73715b0ea", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,374 DEBUG Sent packet: 5:23+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "6e476960a0ce43ed8c1a5ae2407c611e"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "61b0121f05a541428ca291b73715b0ea", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,377 DEBUG Sent packet: 5:24+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "560c1651a7fd4199bf88b657f9ed7d63"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-nuke-studio"}, "id": "1c7290c86f3e4d3f839364b17c612299", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,377 DEBUG Sent packet: 5:24+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "560c1651a7fd4199bf88b657f9ed7d63"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-nuke-studio"}, "id": "1c7290c86f3e4d3f839364b17c612299", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,378 DEBUG Sent packet: 5:25+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "67f2b8dd9aed493eadacd9c2e7d8e564"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "45b801123d84476f8f98e70b30a4c3c2", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,378 DEBUG Sent packet: 5:25+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "67f2b8dd9aed493eadacd9c2e7d8e564"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "45b801123d84476f8f98e70b30a4c3c2", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,381 DEBUG Received packet: 6:::16+[{"message": "", "success": true}]
2016-06-27 19:51:02,381 DEBUG Received packet: 6:::16+[{"message": "", "success": true}]
2016-06-27 19:51:02,384 DEBUG Received packet: 6:::17+[{"message": "", "success": true}]
2016-06-27 19:51:02,384 DEBUG Received packet: 6:::17+[{"message": "", "success": true}]
2016-06-27 19:51:02,388 DEBUG Received packet: 6:::18+[{"message": "", "success": true}]
2016-06-27 19:51:02,388 DEBUG Received packet: 6:::18+[{"message": "", "success": true}]
2016-06-27 19:51:02,391 DEBUG Received packet: 6:::19+[{"message": "", "success": true}]
2016-06-27 19:51:02,391 DEBUG Received packet: 6:::19+[{"message": "", "success": true}]
2016-06-27 19:51:02,394 DEBUG Received packet: 6:::20+[{"message": "", "success": true}]
2016-06-27 19:51:02,394 DEBUG Received packet: 6:::20+[{"message": "", "success": true}]
2016-06-27 19:51:02,411 DEBUG Received packet: 6:::21+[{"message": "", "success": true}]
2016-06-27 19:51:02,411 DEBUG Received packet: 6:::21+[{"message": "", "success": true}]
2016-06-27 19:51:02,418 DEBUG Received packet: 6:::22+[{"message": "", "success": true}]
2016-06-27 19:51:02,418 DEBUG Received packet: 6:::22+[{"message": "", "success": true}]
2016-06-27 19:51:02,448 DEBUG Received packet: 6:::23+[{"message": "", "success": true}]
2016-06-27 19:51:02,448 DEBUG Received packet: 6:::23+[{"message": "", "success": true}]
2016-06-27 19:51:02,451 DEBUG Received packet: 6:::24+[{"message": "", "success": true}]
2016-06-27 19:51:02,451 DEBUG Received packet: 6:::24+[{"message": "", "success": true}]
2016-06-27 19:51:02,456 DEBUG Received packet: 6:::25+[{"message": "", "success": true}]
2016-06-27 19:51:02,456 DEBUG Received packet: 6:::25+[{"message": "", "success": true}]
2016-06-27 19:51:02,456 DEBUG Discovered applications:
[{'description': None,
  'icon': 'maya',
  'identifier': 'maya_2016',
  'label': 'Maya',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Autodesk\\Maya2016\\bin\\maya.exe',
  'variant': '2016',
  'version': '2016'}]
2016-06-27 19:51:02,456 DEBUG Discovered applications:
[{'description': None,
  'icon': 'maya',
  'identifier': 'maya_2016',
  'label': 'Maya',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Autodesk\\Maya2016\\bin\\maya.exe',
  'variant': '2016',
  'version': '2016'}]
2016-06-27 19:51:02,460 DEBUG Sent packet: 5:26+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0e0fc4e192144cfe8f6925cb0e462d52"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "74ac7b6937044e149f9b2d81eba949f5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,460 DEBUG Sent packet: 5:26+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0e0fc4e192144cfe8f6925cb0e462d52"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "74ac7b6937044e149f9b2d81eba949f5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,466 DEBUG Sent packet: 5:27+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "206378c8ae6f4d0db55bcbcb330758c7"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-maya"}, "id": "d113ed21285d4aee9e0a58c8b5cc487c", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,466 DEBUG Sent packet: 5:27+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "206378c8ae6f4d0db55bcbcb330758c7"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-maya"}, "id": "d113ed21285d4aee9e0a58c8b5cc487c", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,469 DEBUG Sent packet: 5:28+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "aabfbef148e44cbba7f7f70f0b940ebb"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "4f4b79bd1b5f4a2eb3b81ac56a9d3db6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,469 DEBUG Sent packet: 5:28+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "aabfbef148e44cbba7f7f70f0b940ebb"}, "subscription": "topic=ftrack.connect.plugin.debug-information"}, "id": "4f4b79bd1b5f4a2eb3b81ac56a9d3db6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,473 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,473 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,476 DEBUG Sent packet: 5:29+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "68f93db29ce64036b788d23c175026ca"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "f3f0c3d7de9e4e4e95be328ecc9c61d5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,476 DEBUG Sent packet: 5:29+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "68f93db29ce64036b788d23c175026ca"}, "subscription": "topic=ftrack.action.discover and source.user.username=Mike"}, "id": "f3f0c3d7de9e4e4e95be328ecc9c61d5", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,482 DEBUG Sent packet: 5:30+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "6c1ceab5fffe4a25824d8ca3a3767e6d"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-applications-action"}, "id": "07986a91d0114b76b07cd83454a75728", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,482 DEBUG Sent packet: 5:30+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "6c1ceab5fffe4a25824d8ca3a3767e6d"}, "subscription": "topic=ftrack.action.launch and source.user.username=Mike and data.actionIdentifier=ftrack-connect-launch-applications-action"}, "id": "07986a91d0114b76b07cd83454a75728", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,486 DEBUG Sent packet: 5:31+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "eb6bb678b3284594aed4db88a361de40"}, "subscription": "topic=ftrack.connect.publish.make-web-playable"}, "id": "e569b920be14438592de75b3fa0e9f9b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,486 DEBUG Sent packet: 5:31+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "eb6bb678b3284594aed4db88a361de40"}, "subscription": "topic=ftrack.connect.publish.make-web-playable"}, "id": "e569b920be14438592de75b3fa0e9f9b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,493 DEBUG Received packet: 6:::26+[{"message": "", "success": true}]
2016-06-27 19:51:02,493 DEBUG Received packet: 6:::26+[{"message": "", "success": true}]
2016-06-27 19:51:02,515 DEBUG Received packet: 6:::27+[{"message": "", "success": true}]
2016-06-27 19:51:02,515 DEBUG Received packet: 6:::27+[{"message": "", "success": true}]
2016-06-27 19:51:02,523 DEBUG Received packet: 6:::28+[{"message": "", "success": true}]
2016-06-27 19:51:02,523 DEBUG Received packet: 6:::28+[{"message": "", "success": true}]
2016-06-27 19:51:02,529 DEBUG Received packet: 6:::29+[{"message": "", "success": true}]
2016-06-27 19:51:02,529 DEBUG Received packet: 6:::29+[{"message": "", "success": true}]
2016-06-27 19:51:02,536 DEBUG Received packet: 6:::30+[{"message": "", "success": true}]
2016-06-27 19:51:02,536 DEBUG Received packet: 6:::30+[{"message": "", "success": true}]
2016-06-27 19:51:02,561 DEBUG Received packet: 6:::31+[{"message": "", "success": true}]
2016-06-27 19:51:02,561 DEBUG Received packet: 6:::31+[{"message": "", "success": true}]
2016-06-27 19:51:02,575 DEBUG Discovered applications:
[{'description': None,
  'icon': None,
  'identifier': 'houdini_15.0.393',
  'label': 'Houdini',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Side Effects Software\\Houdini 15.0.393\\bin\\houdini.exe',
  'variant': '15.0.393',
  'version': '15.0.393'}]
2016-06-27 19:51:02,575 DEBUG Discovered applications:
[{'description': None,
  'icon': None,
  'identifier': 'houdini_15.0.393',
  'label': 'Houdini',
  'launchArguments': None,
  'path': 'C:\\Program Files\\Side Effects Software\\Houdini 15.0.393\\bin\\houdini.exe',
  'variant': '15.0.393',
  'version': '15.0.393'}]
2016-06-27 19:51:02,578 DEBUG Sent packet: 5:32+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "05e2c9eecd804ca89b2b3b3d84b8ccba"}, "subscription": "topic=ftrack.action.discover"}, "id": "7028ad75934b467ebdf70ca01ae7982a", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,578 DEBUG Sent packet: 5:32+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "05e2c9eecd804ca89b2b3b3d84b8ccba"}, "subscription": "topic=ftrack.action.discover"}, "id": "7028ad75934b467ebdf70ca01ae7982a", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,579 DEBUG Sent packet: 5:33+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "3c6ff9ddeea344618db6267ea111b43d"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-houdini-launch-action"}, "id": "7efab28f0c82441fbb757b3cbaaefc13", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,579 DEBUG Sent packet: 5:33+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "3c6ff9ddeea344618db6267ea111b43d"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-houdini-launch-action"}, "id": "7efab28f0c82441fbb757b3cbaaefc13", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,589 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,589 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,589 DEBUG Discovered applications:
[]
2016-06-27 19:51:02,592 DEBUG Sent packet: 5:34+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "1c6ae09200594152a760da7b15c2a8df"}, "subscription": "topic=ftrack.action.discover"}, "id": "d4a5475898ef47d39d480cb9b98a991b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,592 DEBUG Sent packet: 5:34+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "1c6ae09200594152a760da7b15c2a8df"}, "subscription": "topic=ftrack.action.discover"}, "id": "d4a5475898ef47d39d480cb9b98a991b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,592 DEBUG Sent packet: 5:34+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "1c6ae09200594152a760da7b15c2a8df"}, "subscription": "topic=ftrack.action.discover"}, "id": "d4a5475898ef47d39d480cb9b98a991b", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,595 DEBUG Sent packet: 5:35+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0338fc7b69a9493bbf623a0c0617c793"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-unreal-launch-action"}, "id": "16537f2f230645b3ac026575ec0552c6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,595 DEBUG Sent packet: 5:35+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0338fc7b69a9493bbf623a0c0617c793"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-unreal-launch-action"}, "id": "16537f2f230645b3ac026575ec0552c6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,595 DEBUG Sent packet: 5:35+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0338fc7b69a9493bbf623a0c0617c793"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-unreal-launch-action"}, "id": "16537f2f230645b3ac026575ec0552c6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,601 DEBUG Sent packet: 5:36+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "401a47837c5e4e43800944d7731f4a49"}, "subscription": "topic=ftrack.action.discover"}, "id": "7f749b1b2ea3472a8224cfe5d59250f9", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,601 DEBUG Sent packet: 5:36+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "401a47837c5e4e43800944d7731f4a49"}, "subscription": "topic=ftrack.action.discover"}, "id": "7f749b1b2ea3472a8224cfe5d59250f9", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,601 DEBUG Sent packet: 5:36+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "401a47837c5e4e43800944d7731f4a49"}, "subscription": "topic=ftrack.action.discover"}, "id": "7f749b1b2ea3472a8224cfe5d59250f9", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,605 DEBUG Sent packet: 5:37+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "56ff295cabfb480fa4b4e635b4da58fc"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=my-message-launch-action"}, "id": "78b74442fa1344c18ed7a108ba55e1bd", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,605 DEBUG Sent packet: 5:37+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "56ff295cabfb480fa4b4e635b4da58fc"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=my-message-launch-action"}, "id": "78b74442fa1344c18ed7a108ba55e1bd", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,605 DEBUG Sent packet: 5:37+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "56ff295cabfb480fa4b4e635b4da58fc"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=my-message-launch-action"}, "id": "78b74442fa1344c18ed7a108ba55e1bd", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,608 DEBUG Received packet: 6:::32+[{"message": "", "success": true}]
2016-06-27 19:51:02,608 DEBUG Received packet: 6:::32+[{"message": "", "success": true}]
2016-06-27 19:51:02,608 DEBUG Received packet: 6:::32+[{"message": "", "success": true}]
2016-06-27 19:51:02,645 DEBUG Received packet: 6:::33+[{"message": "", "success": true}]
2016-06-27 19:51:02,645 DEBUG Received packet: 6:::33+[{"message": "", "success": true}]
2016-06-27 19:51:02,645 DEBUG Received packet: 6:::33+[{"message": "", "success": true}]
2016-06-27 19:51:02,654 DEBUG Sent packet: 5:38+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f8e923e68b1a4c8789512e4bffb87edf"}, "subscription": "topic=ftrack.action.discover"}, "id": "5ff4493cdee34e1e8dd54f501368cc56", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,654 DEBUG Sent packet: 5:38+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f8e923e68b1a4c8789512e4bffb87edf"}, "subscription": "topic=ftrack.action.discover"}, "id": "5ff4493cdee34e1e8dd54f501368cc56", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,654 DEBUG Sent packet: 5:38+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "f8e923e68b1a4c8789512e4bffb87edf"}, "subscription": "topic=ftrack.action.discover"}, "id": "5ff4493cdee34e1e8dd54f501368cc56", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,658 DEBUG Sent packet: 5:39+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0dc61d07e9c54a4c8f5e043f1820ed6a"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-word-launch-action"}, "id": "4d6fca3fe9934090957763295a4f2629", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,658 DEBUG Sent packet: 5:39+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0dc61d07e9c54a4c8f5e043f1820ed6a"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-word-launch-action"}, "id": "4d6fca3fe9934090957763295a4f2629", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,658 DEBUG Sent packet: 5:39+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "0dc61d07e9c54a4c8f5e043f1820ed6a"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-word-launch-action"}, "id": "4d6fca3fe9934090957763295a4f2629", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,667 DEBUG Sent packet: 5:40+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "76c6d06548ee42a7b9527b23b8b65c96"}, "subscription": "topic=ftrack.action.discover"}, "id": "b74f27233bde4934b01884a5ea966cb6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,667 DEBUG Sent packet: 5:40+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "76c6d06548ee42a7b9527b23b8b65c96"}, "subscription": "topic=ftrack.action.discover"}, "id": "b74f27233bde4934b01884a5ea966cb6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,667 DEBUG Sent packet: 5:40+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "76c6d06548ee42a7b9527b23b8b65c96"}, "subscription": "topic=ftrack.action.discover"}, "id": "b74f27233bde4934b01884a5ea966cb6", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,671 DEBUG Sent packet: 5:41+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "ae5dcfb104934ccb986da3aa505dcd00"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-launch-create-folders-action"}, "id": "c79dc481f1974d8495b5b3286902792f", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,671 DEBUG Sent packet: 5:41+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "ae5dcfb104934ccb986da3aa505dcd00"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-launch-create-folders-action"}, "id": "c79dc481f1974d8495b5b3286902792f", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,671 DEBUG Sent packet: 5:41+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "ae5dcfb104934ccb986da3aa505dcd00"}, "subscription": "topic=ftrack.action.launch and data.actionIdentifier=mb-launch-create-folders-action"}, "id": "c79dc481f1974d8495b5b3286902792f", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:02,693 DEBUG Received packet: 6:::34+[{"message": "", "success": true}]
2016-06-27 19:51:02,693 DEBUG Received packet: 6:::34+[{"message": "", "success": true}]
2016-06-27 19:51:02,693 DEBUG Received packet: 6:::34+[{"message": "", "success": true}]
2016-06-27 19:51:02,700 DEBUG Received packet: 6:::35+[{"message": "", "success": true}]
2016-06-27 19:51:02,700 DEBUG Received packet: 6:::35+[{"message": "", "success": true}]
2016-06-27 19:51:02,700 DEBUG Received packet: 6:::35+[{"message": "", "success": true}]
2016-06-27 19:51:02,701 DEBUG Received packet: 6:::36+[{"message": "", "success": true}]
2016-06-27 19:51:02,701 DEBUG Received packet: 6:::36+[{"message": "", "success": true}]
2016-06-27 19:51:02,701 DEBUG Received packet: 6:::36+[{"message": "", "success": true}]
2016-06-27 19:51:02,703 DEBUG Received packet: 6:::37+[{"message": "", "success": true}]
2016-06-27 19:51:02,703 DEBUG Received packet: 6:::37+[{"message": "", "success": true}]
2016-06-27 19:51:02,703 DEBUG Received packet: 6:::37+[{"message": "", "success": true}]
2016-06-27 19:51:02,713 DEBUG Received packet: 6:::38+[{"message": "", "success": true}]
2016-06-27 19:51:02,713 DEBUG Received packet: 6:::38+[{"message": "", "success": true}]
2016-06-27 19:51:02,713 DEBUG Received packet: 6:::38+[{"message": "", "success": true}]
2016-06-27 19:51:02,753 DEBUG Received packet: 6:::39+[{"message": "", "success": true}]
2016-06-27 19:51:02,753 DEBUG Received packet: 6:::39+[{"message": "", "success": true}]
2016-06-27 19:51:02,753 DEBUG Received packet: 6:::39+[{"message": "", "success": true}]
2016-06-27 19:51:02,755 DEBUG Received packet: 6:::40+[{"message": "", "success": true}]
2016-06-27 19:51:02,755 DEBUG Received packet: 6:::40+[{"message": "", "success": true}]
2016-06-27 19:51:02,755 DEBUG Received packet: 6:::40+[{"message": "", "success": true}]
2016-06-27 19:51:02,756 DEBUG Received packet: 6:::41+[{"message": "", "success": true}]
2016-06-27 19:51:02,756 DEBUG Received packet: 6:::41+[{"message": "", "success": true}]
2016-06-27 19:51:02,756 DEBUG Received packet: 6:::41+[{"message": "", "success": true}]
2016-06-27 19:51:02,997 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:02,997 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:02,997 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:03,002 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,002 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,002 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,197 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,197 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,197 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,203 DEBUG Call took: 0.201
2016-06-27 19:51:03,203 DEBUG Call took: 0.201
2016-06-27 19:51:03,203 DEBUG Call took: 0.201
2016-06-27 19:51:03,204 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,204 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,204 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,207 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,207 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,207 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,236 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,236 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,236 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,239 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,239 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,239 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,242 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,242 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,242 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,243 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,243 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,243 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,246 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,246 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,246 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,247 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,247 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,247 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,250 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,250 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,250 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,252 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,252 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,252 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,255 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,255 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,255 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,256 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,256 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,256 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,259 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,259 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,259 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,262 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,262 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,262 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,263 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,263 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,263 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,266 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,266 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,266 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,269 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,269 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,269 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,272 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,272 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,272 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,273 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,273 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,273 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,276 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,276 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,276 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,278 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,278 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,278 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,279 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,279 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,279 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,282 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,282 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,282 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,283 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,283 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,283 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,286 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,286 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,286 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,290 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,290 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,290 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,293 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,293 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,293 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,296 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,296 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,296 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,299 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,299 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,299 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,302 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,302 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,302 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,303 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,303 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,303 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,306 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,306 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,306 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,309 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,309 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,309 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,313 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,313 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,313 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,315 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,315 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,315 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,319 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,319 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,319 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,323 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,323 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,323 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,326 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,326 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,326 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,329 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,329 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,329 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,332 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,332 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,332 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,334 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,334 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,334 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,335 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,335 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,335 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,339 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,339 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,339 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,342 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,342 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,342 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,345 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,345 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,345 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,348 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,348 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,348 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,352 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,352 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,352 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,355 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,355 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,355 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,358 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,358 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,358 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,362 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,362 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,362 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,365 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,365 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,365 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,369 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,369 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,369 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,372 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,372 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,372 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,377 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,377 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,377 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,380 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,380 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,380 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,381 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,381 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,381 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,384 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,384 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,384 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,388 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,388 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,388 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,392 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,392 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,392 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,394 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,394 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,394 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,397 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,397 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,397 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,401 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,401 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,401 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,404 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,404 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,404 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,407 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,407 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,407 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,408 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,408 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,408 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,411 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,411 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,411 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,413 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,413 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,413 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,415 DEBUG Failed to notify server about new subscriber 3cccbdb99a424d22817a275620005536 as server not currently reachable.
2016-06-27 19:51:03,415 DEBUG Failed to notify server about new subscriber 3cccbdb99a424d22817a275620005536 as server not currently reachable.
2016-06-27 19:51:03,415 DEBUG Failed to notify server about new subscriber 3cccbdb99a424d22817a275620005536 as server not currently reachable.
2016-06-27 19:51:03,418 DEBUG Failed to notify server about new subscriber 7c8fd1b5dd4b48fab884c20efd551d05 as server not currently reachable.
2016-06-27 19:51:03,418 DEBUG Failed to notify server about new subscriber 7c8fd1b5dd4b48fab884c20efd551d05 as server not currently reachable.
2016-06-27 19:51:03,418 DEBUG Failed to notify server about new subscriber 7c8fd1b5dd4b48fab884c20efd551d05 as server not currently reachable.
2016-06-27 19:51:03,421 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,421 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,421 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,423 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104483976
2016-06-27 19:51:03,423 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104483976
2016-06-27 19:51:03,423 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104483976
2016-06-27 19:51:03,424 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,424 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,424 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,427 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,427 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,427 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,428 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,428 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,428 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,430 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 137801456
2016-06-27 19:51:03,430 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 137801456
2016-06-27 19:51:03,430 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 137801456
2016-06-27 19:51:03,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,434 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,437 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,437 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,437 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,440 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,440 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,440 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,444 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138109112
2016-06-27 19:51:03,444 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138109112
2016-06-27 19:51:03,444 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138109112
2016-06-27 19:51:03,447 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,447 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,447 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,448 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,448 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,448 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,451 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,451 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,451 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,453 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109392
2016-06-27 19:51:03,453 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109392
2016-06-27 19:51:03,453 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109392
2016-06-27 19:51:03,457 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,457 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,457 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,459 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,459 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,459 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,461 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,461 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,461 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,464 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,464 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,464 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,467 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:03,467 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:03,467 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:03,470 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138109224
2016-06-27 19:51:03,470 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138109224
2016-06-27 19:51:03,470 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138109224
2016-06-27 19:51:03,473 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:03,473 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:03,473 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:03,476 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:03,476 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:03,476 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:03,479 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,479 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,479 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,480 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109784
2016-06-27 19:51:03,480 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109784
2016-06-27 19:51:03,480 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138109784
2016-06-27 19:51:03,484 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,484 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,484 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,486 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:03,486 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:03,486 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:03,489 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:03,489 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:03,489 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:03,490 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,490 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,490 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,493 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:03,493 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:03,493 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:03,496 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138110120
2016-06-27 19:51:03,496 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138110120
2016-06-27 19:51:03,496 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138110120
2016-06-27 19:51:03,497 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:03,497 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:03,497 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:03,500 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:03,500 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:03,500 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:03,503 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,503 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,503 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,506 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138110456
2016-06-27 19:51:03,506 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138110456
2016-06-27 19:51:03,506 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138110456
2016-06-27 19:51:03,509 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,509 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,509 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:03,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:03,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:03,516 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:03,516 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:03,516 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:03,519 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,519 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,519 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,523 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:03,523 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:03,523 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:03,528 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,528 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,528 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:03,716 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,716 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,716 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:03,720 DEBUG Call took: 0.194
2016-06-27 19:51:03,720 DEBUG Call took: 0.194
2016-06-27 19:51:03,720 DEBUG Call took: 0.194
2016-06-27 19:51:03,724 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,724 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,724 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:03,729 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,729 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,729 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,759 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,759 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,759 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:03,762 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,762 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,762 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:03,765 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,765 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,765 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:03,769 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,769 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,769 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:03,772 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,772 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,772 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:03,776 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,776 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,776 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:03,779 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,779 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,779 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:03,782 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,782 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,782 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:03,786 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,786 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,786 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:03,788 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,788 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,788 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:03,789 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,789 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,789 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:03,792 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,792 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,792 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:03,795 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,795 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,795 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:03,796 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,796 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,796 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:03,801 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,801 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,801 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:03,802 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,802 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,802 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:03,805 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,805 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,805 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:03,808 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,808 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,808 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:03,812 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,812 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,812 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:03,813 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,813 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,813 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:03,818 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,818 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,818 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:03,821 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,821 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,821 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:03,825 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,825 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,825 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:03,828 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,828 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,828 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:03,832 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,832 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,832 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:03,835 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,835 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,835 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:03,836 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,836 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,836 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:03,838 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,838 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,838 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:03,841 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,841 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,841 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:03,845 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,845 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,845 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:03,846 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,846 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,846 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:03,848 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,848 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,848 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:03,851 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,851 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,851 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:03,855 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,855 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,855 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:03,858 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,858 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,858 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:03,861 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,861 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,861 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:03,864 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,864 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,864 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:03,868 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,868 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,868 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:03,871 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,871 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,871 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:03,874 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,874 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,874 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:03,878 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,878 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,878 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:03,880 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,880 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,880 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:03,884 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,884 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,884 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:03,885 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,885 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,885 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:03,888 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,888 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,888 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:03,891 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,891 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,891 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:03,894 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,894 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,894 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:03,897 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,897 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,897 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:03,901 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,901 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,901 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:03,904 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,904 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,904 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:03,907 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,907 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,907 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:03,914 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,914 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,914 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:03,917 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,917 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,917 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:03,921 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,921 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,921 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:03,926 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,926 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,926 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:03,928 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,928 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,928 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:03,930 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,930 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,930 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:03,933 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,933 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,933 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:03,936 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,936 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,936 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:03,937 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,937 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,937 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:03,940 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,940 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,940 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:03,943 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,943 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,943 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:03,944 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,944 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,944 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:03,946 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,946 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,946 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:03,950 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,950 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,950 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:03,954 DEBUG Failed to notify server about new subscriber 06ede0da1bc648b38154987f591a54c6 as server not currently reachable.
2016-06-27 19:51:03,954 DEBUG Failed to notify server about new subscriber 06ede0da1bc648b38154987f591a54c6 as server not currently reachable.
2016-06-27 19:51:03,954 DEBUG Failed to notify server about new subscriber 06ede0da1bc648b38154987f591a54c6 as server not currently reachable.
2016-06-27 19:51:03,959 DEBUG Failed to notify server about new subscriber 90d549b7dede433ca3686b7c6f21127f as server not currently reachable.
2016-06-27 19:51:03,959 DEBUG Failed to notify server about new subscriber 90d549b7dede433ca3686b7c6f21127f as server not currently reachable.
2016-06-27 19:51:03,959 DEBUG Failed to notify server about new subscriber 90d549b7dede433ca3686b7c6f21127f as server not currently reachable.
2016-06-27 19:51:03,963 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,963 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,963 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:03,964 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104532008
2016-06-27 19:51:03,964 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104532008
2016-06-27 19:51:03,964 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104532008
2016-06-27 19:51:03,967 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,967 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,967 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:03,969 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,969 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,969 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:03,970 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,970 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,970 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,971 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138088744
2016-06-27 19:51:03,971 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138088744
2016-06-27 19:51:03,971 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138088744
2016-06-27 19:51:03,976 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,976 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,976 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,977 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,977 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,977 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:03,979 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,979 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,979 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:03,980 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,980 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,980 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,983 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,983 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,983 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:03,984 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138089080
2016-06-27 19:51:03,984 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138089080
2016-06-27 19:51:03,984 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 138089080
2016-06-27 19:51:03,986 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,986 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,986 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:03,989 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,989 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,989 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:03,990 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,990 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,990 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:03,992 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089416
2016-06-27 19:51:03,992 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089416
2016-06-27 19:51:03,992 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089416
2016-06-27 19:51:03,993 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,993 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,993 DEBUG Merging new data into attached entity.
2016-06-27 19:51:03,994 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,994 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,994 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:03,996 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,996 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,996 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:03,999 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,999 DEBUG Cache updated with merged entity.
2016-06-27 19:51:03,999 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,000 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,000 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,000 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,003 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138089640
2016-06-27 19:51:04,003 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138089640
2016-06-27 19:51:04,003 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 138089640
2016-06-27 19:51:04,005 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,005 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,005 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,006 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,006 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,006 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,009 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,009 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,009 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,009 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089976
2016-06-27 19:51:04,009 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089976
2016-06-27 19:51:04,009 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138089976
2016-06-27 19:51:04,013 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,013 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,013 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,013 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,013 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,013 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,016 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,016 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,016 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,017 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,017 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,017 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,019 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,019 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,019 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,022 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138090200
2016-06-27 19:51:04,022 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138090200
2016-06-27 19:51:04,022 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 138090200
2016-06-27 19:51:04,025 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,025 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,025 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,026 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,026 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,026 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,028 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,028 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,028 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,029 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138090536
2016-06-27 19:51:04,029 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138090536
2016-06-27 19:51:04,029 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 138090536
2016-06-27 19:51:04,032 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,032 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,032 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,033 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,033 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,033 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,036 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,036 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,036 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,040 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,040 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,040 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,099 INFO Got selection: []
2016-06-27 19:51:04,099 INFO Got selection: []
2016-06-27 19:51:04,099 INFO Got selection: []
2016-06-27 19:51:04,102 INFO Got selection: []
2016-06-27 19:51:04,102 INFO Got selection: []
2016-06-27 19:51:04,102 INFO Got selection: []
2016-06-27 19:51:04,105 DEBUG Discovered actions: [[{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-cinema-4d', 'description': None, 'applicationIdentifier': 'cinema_4d_R16', 'icon': 'cinema_4d', 'variant': 'R16', 'label': 'Cinema 4D'}], [{'selection': [], 'actionIdentifier': 'mb-houdini-launch-action', 'description': None, 'applicationIdentifier': 'houdini_15.0.393', 'icon': 'https://upload.wikimedia.org/wikipedia/commons/1/15/Houdini3D_icon.png', 'variant': '15.0.393', 'label': 'Houdini'}], [{'selection': [], 'actionIdentifier': 'my-message-launch-action', 'label': 'Message'}], [{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-nuke-studio', 'description': None, 'applicationIdentifier': 'nuke_studio_9.0v6', 'icon': 'nuke_studio', 'variant': '9.0v6', 'label': 'Nuke Studio'}]]
2016-06-27 19:51:04,105 DEBUG Discovered actions: [[{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-cinema-4d', 'description': None, 'applicationIdentifier': 'cinema_4d_R16', 'icon': 'cinema_4d', 'variant': 'R16', 'label': 'Cinema 4D'}], [{'selection': [], 'actionIdentifier': 'mb-houdini-launch-action', 'description': None, 'applicationIdentifier': 'houdini_15.0.393', 'icon': 'https://upload.wikimedia.org/wikipedia/commons/1/15/Houdini3D_icon.png', 'variant': '15.0.393', 'label': 'Houdini'}], [{'selection': [], 'actionIdentifier': 'my-message-launch-action', 'label': 'Message'}], [{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-nuke-studio', 'description': None, 'applicationIdentifier': 'nuke_studio_9.0v6', 'icon': 'nuke_studio', 'variant': '9.0v6', 'label': 'Nuke Studio'}]]
2016-06-27 19:51:04,105 DEBUG Discovered actions: [[{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-cinema-4d', 'description': None, 'applicationIdentifier': 'cinema_4d_R16', 'icon': 'cinema_4d', 'variant': 'R16', 'label': 'Cinema 4D'}], [{'selection': [], 'actionIdentifier': 'mb-houdini-launch-action', 'description': None, 'applicationIdentifier': 'houdini_15.0.393', 'icon': 'https://upload.wikimedia.org/wikipedia/commons/1/15/Houdini3D_icon.png', 'variant': '15.0.393', 'label': 'Houdini'}], [{'selection': [], 'actionIdentifier': 'my-message-launch-action', 'label': 'Message'}], [{'selection': [], 'actionIdentifier': 'ftrack-connect-launch-nuke-studio', 'description': None, 'applicationIdentifier': 'nuke_studio_9.0v6', 'icon': 'nuke_studio', 'variant': '9.0v6', 'label': 'Nuke Studio'}]]
2016-06-27 19:51:04,148 DEBUG Query 'User where username="Mike"'
2016-06-27 19:51:04,148 DEBUG Query 'User where username="Mike"'
2016-06-27 19:51:04,148 DEBUG Query 'User where username="Mike"'
2016-06-27 19:51:04,151 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select id from User where username=\\"Mike\\" limit 2"}]'
2016-06-27 19:51:04,151 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select id from User where username=\\"Mike\\" limit 2"}]'
2016-06-27 19:51:04,151 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select id from User where username=\\"Mike\\" limit 2"}]'
2016-06-27 19:51:04,194 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:04,194 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:04,194 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query_server_information"}]'
2016-06-27 19:51:04,197 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:04,197 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:04,197 INFO Starting new HTTPS connection (1): firstborn.ftrackapp.com
2016-06-27 19:51:04,210 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,210 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,210 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,213 DEBUG Call took: 0.056
2016-06-27 19:51:04,213 DEBUG Call took: 0.056
2016-06-27 19:51:04,213 DEBUG Call took: 0.056
2016-06-27 19:51:04,216 DEBUG Response: u'[{"action": "query", "data": [{"username": "Mike", "first_name": "Mike", "last_name": "Bourbeau", "thumbnail_id": "8874fa82-b305-11e4-bd4f-04013b2bc401", "is_active": true, "email": "Mike.Bourbeau@firstborn.com", "__entity_type__": "User", "id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "resource_type": "user"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:04,216 DEBUG Response: u'[{"action": "query", "data": [{"username": "Mike", "first_name": "Mike", "last_name": "Bourbeau", "thumbnail_id": "8874fa82-b305-11e4-bd4f-04013b2bc401", "is_active": true, "email": "Mike.Bourbeau@firstborn.com", "__entity_type__": "User", "id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "resource_type": "user"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:04,216 DEBUG Response: u'[{"action": "query", "data": [{"username": "Mike", "first_name": "Mike", "last_name": "Bourbeau", "thumbnail_id": "8874fa82-b305-11e4-bd4f-04013b2bc401", "is_active": true, "email": "Mike.Bourbeau@firstborn.com", "__entity_type__": "User", "id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "resource_type": "user"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:04,217 DEBUG Reconstructing entity from {u'username': u'Mike', u'first_name': u'Mike', u'last_name': u'Bourbeau', u'thumbnail_id': u'8874fa82-b305-11e4-bd4f-04013b2bc401', u'is_active': True, u'id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'User', u'email': u'Mike.Bourbeau@firstborn.com', u'resource_type': u'user'}.
2016-06-27 19:51:04,217 DEBUG Reconstructing entity from {u'username': u'Mike', u'first_name': u'Mike', u'last_name': u'Bourbeau', u'thumbnail_id': u'8874fa82-b305-11e4-bd4f-04013b2bc401', u'is_active': True, u'id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'User', u'email': u'Mike.Bourbeau@firstborn.com', u'resource_type': u'user'}.
2016-06-27 19:51:04,217 DEBUG Reconstructing entity from {u'username': u'Mike', u'first_name': u'Mike', u'last_name': u'Bourbeau', u'thumbnail_id': u'8874fa82-b305-11e4-bd4f-04013b2bc401', u'is_active': True, u'id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'User', u'email': u'Mike.Bourbeau@firstborn.com', u'resource_type': u'user'}.
2016-06-27 19:51:04,220 DEBUG Merging entity into session: <User(b5d30d7c-ad77-11e4-a5be-04013b2bc401)> at 141467544
2016-06-27 19:51:04,220 DEBUG Merging entity into session: <User(b5d30d7c-ad77-11e4-a5be-04013b2bc401)> at 141467544
2016-06-27 19:51:04,220 DEBUG Merging entity into session: <User(b5d30d7c-ad77-11e4-a5be-04013b2bc401)> at 141467544
2016-06-27 19:51:04,223 DEBUG Entity not already processed for key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401']). Keys: []
2016-06-27 19:51:04,223 DEBUG Entity not already processed for key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401']). Keys: []
2016-06-27 19:51:04,223 DEBUG Entity not already processed for key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401']). Keys: []
2016-06-27 19:51:04,226 DEBUG Checking for entity in cache with key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401'])
2016-06-27 19:51:04,226 DEBUG Checking for entity in cache with key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401'])
2016-06-27 19:51:04,226 DEBUG Checking for entity in cache with key ('User', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401'])
2016-06-27 19:51:04,227 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,227 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,227 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,230 DEBUG Entity not present in cache. Constructed new instance: <User(Unknown)> at 141466256
2016-06-27 19:51:04,230 DEBUG Entity not present in cache. Constructed new instance: <User(Unknown)> at 141466256
2016-06-27 19:51:04,230 DEBUG Entity not present in cache. Constructed new instance: <User(Unknown)> at 141466256
2016-06-27 19:51:04,233 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,233 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,233 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,237 DEBUG Merged remote_attribute "resource_type": Symbol(NOT_SET) -> u'user'
2016-06-27 19:51:04,237 DEBUG Merged remote_attribute "resource_type": Symbol(NOT_SET) -> u'user'
2016-06-27 19:51:04,237 DEBUG Merged remote_attribute "resource_type": Symbol(NOT_SET) -> u'user'
2016-06-27 19:51:04,240 DEBUG Merged remote_attribute "email": Symbol(NOT_SET) -> u'Mike.Bourbeau@firstborn.com'
2016-06-27 19:51:04,240 DEBUG Merged remote_attribute "email": Symbol(NOT_SET) -> u'Mike.Bourbeau@firstborn.com'
2016-06-27 19:51:04,240 DEBUG Merged remote_attribute "email": Symbol(NOT_SET) -> u'Mike.Bourbeau@firstborn.com'
2016-06-27 19:51:04,243 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,243 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,243 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,244 DEBUG Merged remote_attribute "is_active": Symbol(NOT_SET) -> True
2016-06-27 19:51:04,244 DEBUG Merged remote_attribute "is_active": Symbol(NOT_SET) -> True
2016-06-27 19:51:04,244 DEBUG Merged remote_attribute "is_active": Symbol(NOT_SET) -> True
2016-06-27 19:51:04,246 DEBUG Merged remote_attribute "thumbnail_id": Symbol(NOT_SET) -> u'8874fa82-b305-11e4-bd4f-04013b2bc401'
2016-06-27 19:51:04,246 DEBUG Merged remote_attribute "thumbnail_id": Symbol(NOT_SET) -> u'8874fa82-b305-11e4-bd4f-04013b2bc401'
2016-06-27 19:51:04,246 DEBUG Merged remote_attribute "thumbnail_id": Symbol(NOT_SET) -> u'8874fa82-b305-11e4-bd4f-04013b2bc401'
2016-06-27 19:51:04,249 DEBUG Merged remote_attribute "last_name": Symbol(NOT_SET) -> u'Bourbeau'
2016-06-27 19:51:04,249 DEBUG Merged remote_attribute "last_name": Symbol(NOT_SET) -> u'Bourbeau'
2016-06-27 19:51:04,249 DEBUG Merged remote_attribute "last_name": Symbol(NOT_SET) -> u'Bourbeau'
2016-06-27 19:51:04,250 DEBUG Merged remote_attribute "first_name": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,250 DEBUG Merged remote_attribute "first_name": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,250 DEBUG Merged remote_attribute "first_name": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,252 DEBUG Merged remote_attribute "username": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,252 DEBUG Merged remote_attribute "username": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,252 DEBUG Merged remote_attribute "username": Symbol(NOT_SET) -> u'Mike'
2016-06-27 19:51:04,255 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,255 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,255 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,256 DEBUG Query 'Metadata where key is "ftrack_recent_actions" and parent_type is "User" and parent_id is "b5d30d7c-ad77-11e4-a5be-04013b2bc401"'
2016-06-27 19:51:04,256 DEBUG Query 'Metadata where key is "ftrack_recent_actions" and parent_type is "User" and parent_id is "b5d30d7c-ad77-11e4-a5be-04013b2bc401"'
2016-06-27 19:51:04,256 DEBUG Query 'Metadata where key is "ftrack_recent_actions" and parent_type is "User" and parent_id is "b5d30d7c-ad77-11e4-a5be-04013b2bc401"'
2016-06-27 19:51:04,257 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select parent_id, key, value, parent_type from Metadata where key is \\"ftrack_recent_actions\\" and parent_type is \\"User\\" and parent_id is \\"b5d30d7c-ad77-11e4-a5be-04013b2bc401\\" limit 1"}]'
2016-06-27 19:51:04,257 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select parent_id, key, value, parent_type from Metadata where key is \\"ftrack_recent_actions\\" and parent_type is \\"User\\" and parent_id is \\"b5d30d7c-ad77-11e4-a5be-04013b2bc401\\" limit 1"}]'
2016-06-27 19:51:04,257 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select parent_id, key, value, parent_type from Metadata where key is \\"ftrack_recent_actions\\" and parent_type is \\"User\\" and parent_id is \\"b5d30d7c-ad77-11e4-a5be-04013b2bc401\\" limit 1"}]'
2016-06-27 19:51:04,312 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,312 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,312 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,315 DEBUG Call took: 0.054
2016-06-27 19:51:04,315 DEBUG Call took: 0.054
2016-06-27 19:51:04,315 DEBUG Call took: 0.054
2016-06-27 19:51:04,318 DEBUG Response: u'[{"action": "query", "data": [{"parent_id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "__entity_type__": "Metadata", "parent_type": "User", "value": "[\\"Message\\", \\"Create Folders\\", \\"Houdini\\", \\"Nuke Studio\\", \\"Print\\", \\"Maya\\", \\"Efesto Lab\\", \\"Maya 2015\\", \\"NukeX\\", \\"Photoshop CC\\", \\"Create Structure\\"]", "key": "ftrack_recent_actions"}], "metadata": {"next": {"offset": 1}}}]'
2016-06-27 19:51:04,318 DEBUG Response: u'[{"action": "query", "data": [{"parent_id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "__entity_type__": "Metadata", "parent_type": "User", "value": "[\\"Message\\", \\"Create Folders\\", \\"Houdini\\", \\"Nuke Studio\\", \\"Print\\", \\"Maya\\", \\"Efesto Lab\\", \\"Maya 2015\\", \\"NukeX\\", \\"Photoshop CC\\", \\"Create Structure\\"]", "key": "ftrack_recent_actions"}], "metadata": {"next": {"offset": 1}}}]'
2016-06-27 19:51:04,318 DEBUG Response: u'[{"action": "query", "data": [{"parent_id": "b5d30d7c-ad77-11e4-a5be-04013b2bc401", "__entity_type__": "Metadata", "parent_type": "User", "value": "[\\"Message\\", \\"Create Folders\\", \\"Houdini\\", \\"Nuke Studio\\", \\"Print\\", \\"Maya\\", \\"Efesto Lab\\", \\"Maya 2015\\", \\"NukeX\\", \\"Photoshop CC\\", \\"Create Structure\\"]", "key": "ftrack_recent_actions"}], "metadata": {"next": {"offset": 1}}}]'
2016-06-27 19:51:04,321 DEBUG Reconstructing entity from {u'parent_id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'Metadata', u'parent_type': u'User', u'key': u'ftrack_recent_actions', u'value': u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'}.
2016-06-27 19:51:04,321 DEBUG Reconstructing entity from {u'parent_id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'Metadata', u'parent_type': u'User', u'key': u'ftrack_recent_actions', u'value': u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'}.
2016-06-27 19:51:04,321 DEBUG Reconstructing entity from {u'parent_id': u'b5d30d7c-ad77-11e4-a5be-04013b2bc401', u'__entity_type__': u'Metadata', u'parent_type': u'User', u'key': u'ftrack_recent_actions', u'value': u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'}.
2016-06-27 19:51:04,323 DEBUG Merging entity into session: <Metadata(b5d30d7c-ad77-11e4-a5be-04013b2bc401, ftrack_recent_actions)> at 145200464
2016-06-27 19:51:04,323 DEBUG Merging entity into session: <Metadata(b5d30d7c-ad77-11e4-a5be-04013b2bc401, ftrack_recent_actions)> at 145200464
2016-06-27 19:51:04,323 DEBUG Merging entity into session: <Metadata(b5d30d7c-ad77-11e4-a5be-04013b2bc401, ftrack_recent_actions)> at 145200464
2016-06-27 19:51:04,325 DEBUG Entity not already processed for key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions']). Keys: []
2016-06-27 19:51:04,325 DEBUG Entity not already processed for key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions']). Keys: []
2016-06-27 19:51:04,325 DEBUG Entity not already processed for key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions']). Keys: []
2016-06-27 19:51:04,328 DEBUG Checking for entity in cache with key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions'])
2016-06-27 19:51:04,328 DEBUG Checking for entity in cache with key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions'])
2016-06-27 19:51:04,328 DEBUG Checking for entity in cache with key ('Metadata', ['b5d30d7c-ad77-11e4-a5be-04013b2bc401', 'ftrack_recent_actions'])
2016-06-27 19:51:04,329 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,329 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,329 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,332 DEBUG Entity not present in cache. Constructed new instance: <Metadata(Unknown)> at 141467600
2016-06-27 19:51:04,332 DEBUG Entity not present in cache. Constructed new instance: <Metadata(Unknown)> at 141467600
2016-06-27 19:51:04,332 DEBUG Entity not present in cache. Constructed new instance: <Metadata(Unknown)> at 141467600
2016-06-27 19:51:04,335 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,335 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,335 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,336 DEBUG Merged remote_attribute "key": Symbol(NOT_SET) -> u'ftrack_recent_actions'
2016-06-27 19:51:04,336 DEBUG Merged remote_attribute "key": Symbol(NOT_SET) -> u'ftrack_recent_actions'
2016-06-27 19:51:04,336 DEBUG Merged remote_attribute "key": Symbol(NOT_SET) -> u'ftrack_recent_actions'
2016-06-27 19:51:04,338 DEBUG Merged remote_attribute "value": Symbol(NOT_SET) -> u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'
2016-06-27 19:51:04,338 DEBUG Merged remote_attribute "value": Symbol(NOT_SET) -> u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'
2016-06-27 19:51:04,338 DEBUG Merged remote_attribute "value": Symbol(NOT_SET) -> u'["Message", "Create Folders", "Houdini", "Nuke Studio", "Print", "Maya", "Efesto Lab", "Maya 2015", "NukeX", "Photoshop CC", "Create Structure"]'
2016-06-27 19:51:04,341 DEBUG Merged remote_attribute "parent_type": Symbol(NOT_SET) -> u'User'
2016-06-27 19:51:04,341 DEBUG Merged remote_attribute "parent_type": Symbol(NOT_SET) -> u'User'
2016-06-27 19:51:04,341 DEBUG Merged remote_attribute "parent_type": Symbol(NOT_SET) -> u'User'
2016-06-27 19:51:04,344 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,344 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,344 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> u'b5d30d7c-ad77-11e4-a5be-04013b2bc401'
2016-06-27 19:51:04,345 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,345 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,345 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,384 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,384 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,384 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:04,388 DEBUG Call took: 0.191
2016-06-27 19:51:04,388 DEBUG Call took: 0.191
2016-06-27 19:51:04,388 DEBUG Call took: 0.191
2016-06-27 19:51:04,390 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:04,390 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:04,390 DEBUG Response: u'[{"storage_scenario": {"data": {}, "scenario": "ftrack.automatic"}, "schema_hash": "f3475fea674e4ea9e633f40f4bbf450c", "version": "3.3.26.4465", "is_timezone_support_enabled": true}]'
2016-06-27 19:51:04,394 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,394 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,394 DEBUG Reading schemas from cache 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,424 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,424 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,424 DEBUG Using cached schemas from 'c:\\users\\mike~1.bou\\appdata\\local\\temp\\ftrack_api_schema_cache.json'
2016-06-27 19:51:04,427 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:04,427 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:04,427 DEBUG Using default StandardFactory to construct entity type class for "TypedContext"
2016-06-27 19:51:04,428 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:04,428 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:04,428 DEBUG Using default StandardFactory to construct entity type class for "Participant"
2016-06-27 19:51:04,430 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:04,430 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:04,430 DEBUG Using default StandardFactory to construct entity type class for "TaskTypeSchema"
2016-06-27 19:51:04,433 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:04,433 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:04,433 DEBUG Using default StandardFactory to construct entity type class for "TypedContextList"
2016-06-27 19:51:04,434 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:04,434 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:04,434 DEBUG Using default StandardFactory to construct entity type class for "Group"
2016-06-27 19:51:04,437 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:04,437 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:04,437 DEBUG Using default StandardFactory to construct entity type class for "Priority"
2016-06-27 19:51:04,438 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:04,438 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:04,438 DEBUG Using default StandardFactory to construct entity type class for "Timelog"
2016-06-27 19:51:04,441 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:04,441 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:04,441 DEBUG Using default StandardFactory to construct entity type class for "State"
2016-06-27 19:51:04,443 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:04,443 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:04,443 DEBUG Using default StandardFactory to construct entity type class for "Setting"
2016-06-27 19:51:04,444 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:04,444 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:04,444 DEBUG Using default StandardFactory to construct entity type class for "WorkflowSchema"
2016-06-27 19:51:04,447 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:04,447 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:04,447 DEBUG Using default StandardFactory to construct entity type class for "Asset"
2016-06-27 19:51:04,448 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:04,448 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:04,448 DEBUG Using default StandardFactory to construct entity type class for "Scope"
2016-06-27 19:51:04,450 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:04,450 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:04,450 DEBUG Using default StandardFactory to construct entity type class for "FileComponent"
2016-06-27 19:51:04,453 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:04,453 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:04,453 DEBUG Using default StandardFactory to construct entity type class for "Type"
2016-06-27 19:51:04,454 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:04,454 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:04,454 DEBUG Using default StandardFactory to construct entity type class for "Folder"
2016-06-27 19:51:04,457 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:04,457 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:04,457 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeType"
2016-06-27 19:51:04,459 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:04,459 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:04,459 DEBUG Using default StandardFactory to construct entity type class for "Metadata"
2016-06-27 19:51:04,460 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:04,460 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:04,460 DEBUG Using default StandardFactory to construct entity type class for "Status"
2016-06-27 19:51:04,463 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:04,463 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:04,463 DEBUG Using default StandardFactory to construct entity type class for "Appointment"
2016-06-27 19:51:04,464 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:04,464 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:04,464 DEBUG Using default StandardFactory to construct entity type class for "JobComponent"
2016-06-27 19:51:04,467 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:04,467 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:04,467 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionInvitee"
2016-06-27 19:51:04,469 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:04,469 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:04,469 DEBUG Using default StandardFactory to construct entity type class for "ListCategory"
2016-06-27 19:51:04,470 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:04,470 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:04,470 DEBUG Using default StandardFactory to construct entity type class for "Component"
2016-06-27 19:51:04,473 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:04,473 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:04,473 DEBUG Using default StandardFactory to construct entity type class for "Job"
2016-06-27 19:51:04,474 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:04,474 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:04,474 DEBUG Using default StandardFactory to construct entity type class for "Membership"
2016-06-27 19:51:04,477 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:04,477 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:04,477 DEBUG Using default StandardFactory to construct entity type class for "User"
2016-06-27 19:51:04,480 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:04,480 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:04,480 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchemaOverride"
2016-06-27 19:51:04,483 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:04,483 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:04,483 DEBUG Using default StandardFactory to construct entity type class for "SequenceComponent"
2016-06-27 19:51:04,484 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:04,484 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:04,484 DEBUG Using default StandardFactory to construct entity type class for "SchemaType"
2016-06-27 19:51:04,487 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:04,487 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:04,487 DEBUG Using default StandardFactory to construct entity type class for "Recipient"
2016-06-27 19:51:04,490 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:04,490 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:04,490 DEBUG Using default StandardFactory to construct entity type class for "ObjectType"
2016-06-27 19:51:04,493 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:04,493 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:04,493 DEBUG Using default StandardFactory to construct entity type class for "Task"
2016-06-27 19:51:04,496 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:04,496 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:04,496 DEBUG Using default StandardFactory to construct entity type class for "AssetType"
2016-06-27 19:51:04,499 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:04,499 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:04,499 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObjectStatus"
2016-06-27 19:51:04,500 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:04,500 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:04,500 DEBUG Using default StandardFactory to construct entity type class for "SchemaStatus"
2016-06-27 19:51:04,503 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:04,503 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:04,503 DEBUG Using default StandardFactory to construct entity type class for "Resource"
2016-06-27 19:51:04,505 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:04,505 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:04,505 DEBUG Using default StandardFactory to construct entity type class for "NoteCategory"
2016-06-27 19:51:04,506 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:04,506 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:04,506 DEBUG Using default StandardFactory to construct entity type class for "Milestone"
2016-06-27 19:51:04,509 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:04,509 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:04,509 DEBUG Using default StandardFactory to construct entity type class for "List"
2016-06-27 19:51:04,510 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:04,510 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:04,510 DEBUG Using default StandardFactory to construct entity type class for "Timer"
2016-06-27 19:51:04,513 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:04,513 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:04,513 DEBUG Using default StandardFactory to construct entity type class for "ProjectSchema"
2016-06-27 19:51:04,515 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:04,515 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:04,515 DEBUG Using default StandardFactory to construct entity type class for "Project"
2016-06-27 19:51:04,516 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:04,516 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:04,516 DEBUG Using default StandardFactory to construct entity type class for "Conversation"
2016-06-27 19:51:04,519 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:04,519 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:04,519 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeConfiguration"
2016-06-27 19:51:04,520 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:04,520 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:04,520 DEBUG Using default StandardFactory to construct entity type class for "ReviewSessionObject"
2016-06-27 19:51:04,523 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:04,523 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:04,523 DEBUG Using default StandardFactory to construct entity type class for "Context"
2016-06-27 19:51:04,526 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:04,526 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:04,526 DEBUG Using default StandardFactory to construct entity type class for "Shot"
2016-06-27 19:51:04,529 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:04,529 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:04,529 DEBUG Using default StandardFactory to construct entity type class for "AssetVersionList"
2016-06-27 19:51:04,530 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:04,530 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:04,530 DEBUG Using default StandardFactory to construct entity type class for "ReviewSession"
2016-06-27 19:51:04,532 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:04,532 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:04,532 DEBUG Using default StandardFactory to construct entity type class for "Feed"
2016-06-27 19:51:04,535 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:04,535 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:04,535 DEBUG Using default StandardFactory to construct entity type class for "Note"
2016-06-27 19:51:04,538 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:04,538 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:04,538 DEBUG Using default StandardFactory to construct entity type class for "Schema"
2016-06-27 19:51:04,539 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:04,539 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:04,539 DEBUG Using default StandardFactory to construct entity type class for "NoteComponent"
2016-06-27 19:51:04,542 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:04,542 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:04,542 DEBUG Using default StandardFactory to construct entity type class for "Sequence"
2016-06-27 19:51:04,545 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:04,545 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:04,545 DEBUG Using default StandardFactory to construct entity type class for "AssetVersion"
2016-06-27 19:51:04,548 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:04,548 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:04,548 DEBUG Using default StandardFactory to construct entity type class for "AssetBuild"
2016-06-27 19:51:04,551 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:04,551 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:04,551 DEBUG Using default StandardFactory to construct entity type class for "Episode"
2016-06-27 19:51:04,552 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:04,552 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:04,552 DEBUG Using default StandardFactory to construct entity type class for "ContainerComponent"
2016-06-27 19:51:04,555 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:04,555 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:04,555 DEBUG Using default StandardFactory to construct entity type class for "ComponentLocation"
2016-06-27 19:51:04,559 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:04,559 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:04,559 DEBUG Using default StandardFactory to construct entity type class for "Message"
2016-06-27 19:51:04,561 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:04,561 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:04,561 DEBUG Using default StandardFactory to construct entity type class for "Disk"
2016-06-27 19:51:04,562 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:04,562 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:04,562 DEBUG Using default StandardFactory to construct entity type class for "Event"
2016-06-27 19:51:04,565 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:04,565 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:04,565 DEBUG Using default StandardFactory to construct entity type class for "CustomAttributeValue"
2016-06-27 19:51:04,566 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:04,566 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:04,566 DEBUG Using default StandardFactory to construct entity type class for "Location"
2016-06-27 19:51:04,569 DEBUG Failed to notify server about new subscriber e1549778023142ba980871538f69484d as server not currently reachable.
2016-06-27 19:51:04,569 DEBUG Failed to notify server about new subscriber e1549778023142ba980871538f69484d as server not currently reachable.
2016-06-27 19:51:04,569 DEBUG Failed to notify server about new subscriber e1549778023142ba980871538f69484d as server not currently reachable.
2016-06-27 19:51:04,575 DEBUG Failed to notify server about new subscriber 01cb843bad07443fa251eef2af80f661 as server not currently reachable.
2016-06-27 19:51:04,575 DEBUG Failed to notify server about new subscriber 01cb843bad07443fa251eef2af80f661 as server not currently reachable.
2016-06-27 19:51:04,575 DEBUG Failed to notify server about new subscriber 01cb843bad07443fa251eef2af80f661 as server not currently reachable.
2016-06-27 19:51:04,578 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:04,578 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:04,578 DEBUG Reconstructing entity from {'id': 'ce9b348f-8809-11e3-821c-20c9d081909b', 'name': 'ftrack.origin'}.
2016-06-27 19:51:04,581 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104712904
2016-06-27 19:51:04,581 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104712904
2016-06-27 19:51:04,581 DEBUG Merging entity into session: <Location("ftrack.origin", ce9b348f-8809-11e3-821c-20c9d081909b)> at 104712904
2016-06-27 19:51:04,582 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:04,582 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:04,582 DEBUG Entity not already processed for key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b']). Keys: []
2016-06-27 19:51:04,585 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:04,585 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:04,585 DEBUG Checking for entity in cache with key ('Location', ['ce9b348f-8809-11e3-821c-20c9d081909b'])
2016-06-27 19:51:04,588 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,588 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,588 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,589 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148211416
2016-06-27 19:51:04,589 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148211416
2016-06-27 19:51:04,589 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148211416
2016-06-27 19:51:04,592 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,592 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,592 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,594 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:04,594 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:04,594 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.origin'
2016-06-27 19:51:04,595 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:04,595 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:04,595 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'ce9b348f-8809-11e3-821c-20c9d081909b'
2016-06-27 19:51:04,596 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,596 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,596 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,598 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:04,598 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:04,598 DEBUG Reconstructing entity from {'id': 'cb268ecc-8809-11e3-a7e2-20c9d081909b', 'name': 'ftrack.unmanaged'}.
2016-06-27 19:51:04,601 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 148211752
2016-06-27 19:51:04,601 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 148211752
2016-06-27 19:51:04,601 DEBUG Merging entity into session: <Location("ftrack.unmanaged", cb268ecc-8809-11e3-a7e2-20c9d081909b)> at 148211752
2016-06-27 19:51:04,604 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:04,604 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:04,604 DEBUG Entity not already processed for key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b']). Keys: []
2016-06-27 19:51:04,605 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:04,605 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:04,605 DEBUG Checking for entity in cache with key ('Location', ['cb268ecc-8809-11e3-a7e2-20c9d081909b'])
2016-06-27 19:51:04,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,609 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212088
2016-06-27 19:51:04,609 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212088
2016-06-27 19:51:04,609 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212088
2016-06-27 19:51:04,612 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,612 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,612 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,615 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:04,615 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:04,615 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.unmanaged'
2016-06-27 19:51:04,617 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:04,617 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:04,617 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cb268ecc-8809-11e3-a7e2-20c9d081909b'
2016-06-27 19:51:04,618 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,618 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,618 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,621 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,621 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,621 DEBUG Reconstructing entity from {'id': 'cd41be70-8809-11e3-b98a-20c9d081909b', 'name': 'ftrack.review'}.
2016-06-27 19:51:04,624 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 148212312
2016-06-27 19:51:04,624 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 148212312
2016-06-27 19:51:04,624 DEBUG Merging entity into session: <Location("ftrack.review", cd41be70-8809-11e3-b98a-20c9d081909b)> at 148212312
2016-06-27 19:51:04,625 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,625 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,625 DEBUG Entity not already processed for key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b']). Keys: []
2016-06-27 19:51:04,628 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,628 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,628 DEBUG Checking for entity in cache with key ('Location', ['cd41be70-8809-11e3-b98a-20c9d081909b'])
2016-06-27 19:51:04,630 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,630 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,630 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,631 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212648
2016-06-27 19:51:04,631 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212648
2016-06-27 19:51:04,631 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148212648
2016-06-27 19:51:04,634 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,634 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,634 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,635 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,635 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,635 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.review'
2016-06-27 19:51:04,638 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,638 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,638 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> 'cd41be70-8809-11e3-b98a-20c9d081909b'
2016-06-27 19:51:04,640 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,640 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,640 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,641 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,641 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,641 DEBUG Reconstructing entity from {'id': '3a372bde-05bc-11e4-8908-20c9d081909b', 'name': 'ftrack.server'}.
2016-06-27 19:51:04,644 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 148212480
2016-06-27 19:51:04,644 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 148212480
2016-06-27 19:51:04,644 DEBUG Merging entity into session: <Location("ftrack.server", 3a372bde-05bc-11e4-8908-20c9d081909b)> at 148212480
2016-06-27 19:51:04,648 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,648 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,648 DEBUG Entity not already processed for key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b']). Keys: []
2016-06-27 19:51:04,651 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,651 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,651 DEBUG Checking for entity in cache with key ('Location', ['3a372bde-05bc-11e4-8908-20c9d081909b'])
2016-06-27 19:51:04,654 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,654 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,654 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:04,657 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148213040
2016-06-27 19:51:04,657 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148213040
2016-06-27 19:51:04,657 DEBUG Entity not present in cache. Constructed new instance: <Location(Unknown)> at 148213040
2016-06-27 19:51:04,658 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,658 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,658 DEBUG Merging new data into attached entity.
2016-06-27 19:51:04,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> 'ftrack.server'
2016-06-27 19:51:04,663 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,663 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,663 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> '3a372bde-05bc-11e4-8908-20c9d081909b'
2016-06-27 19:51:04,665 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,665 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,665 DEBUG Cache updated with merged entity.
2016-06-27 19:51:04,835 DEBUG Sent packet: 5:42+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "a51a9b793b9248958b952b199d30d44c"}, "subscription": "topic=ftrack.connect and source.user.username=Mike"}, "id": "337f81bc7df24cf4b79f2d7bf5b9cba7", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,835 DEBUG Sent packet: 5:42+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "a51a9b793b9248958b952b199d30d44c"}, "subscription": "topic=ftrack.connect and source.user.username=Mike"}, "id": "337f81bc7df24cf4b79f2d7bf5b9cba7", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,835 DEBUG Sent packet: 5:42+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "a51a9b793b9248958b952b199d30d44c"}, "subscription": "topic=ftrack.connect and source.user.username=Mike"}, "id": "337f81bc7df24cf4b79f2d7bf5b9cba7", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,868 DEBUG Received packet: 6:::42+[{"message": "", "success": true}]
2016-06-27 19:51:04,868 DEBUG Received packet: 6:::42+[{"message": "", "success": true}]
2016-06-27 19:51:04,868 DEBUG Received packet: 6:::42+[{"message": "", "success": true}]
2016-06-27 19:51:04,934 DEBUG Sent packet: 5:43+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "37bcefc5771c41629ac194bf97379223"}, "subscription": "topic=ftrack.connect.discover and source.user.username=Mike"}, "id": "82847c71e3f54f3e81535420ec44a609", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,934 DEBUG Sent packet: 5:43+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "37bcefc5771c41629ac194bf97379223"}, "subscription": "topic=ftrack.connect.discover and source.user.username=Mike"}, "id": "82847c71e3f54f3e81535420ec44a609", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,934 DEBUG Sent packet: 5:43+::{"args": [{"topic": "ftrack.meta.subscribe", "source": {"id": "b975a0ff586c467ca3e462dde8570383", "user": {"username": "Mike"}}, "target": "", "sent": null, "data": {"subscriber": {"id": "37bcefc5771c41629ac194bf97379223"}, "subscription": "topic=ftrack.connect.discover and source.user.username=Mike"}, "id": "82847c71e3f54f3e81535420ec44a609", "inReplyToEvent": null}], "name": "ftrack.event"}
2016-06-27 19:51:04,967 DEBUG Received packet: 6:::43+[{"message": "", "success": true}]
2016-06-27 19:51:04,967 DEBUG Received packet: 6:::43+[{"message": "", "success": true}]
2016-06-27 19:51:04,967 DEBUG Received packet: 6:::43+[{"message": "", "success": true}]
2016-06-27 19:51:05,121 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,121 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,121 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,125 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,125 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,125 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,128 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,128 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,128 DEBUG Query 'Project where status is active'
2016-06-27 19:51:05,132 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,132 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,132 DEBUG Calling server https://firstborn.ftrackapp.com/api with '[{"action": "query", "expression": "select context_type, id, name from Project where status is active offset 0 limit 500"}]'
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,213 DEBUG "POST /api HTTP/1.1" 200 None
2016-06-27 19:51:05,223 DEBUG Call took: 0.089
2016-06-27 19:51:05,223 DEBUG Call took: 0.084
2016-06-27 19:51:05,223 DEBUG Call took: 0.089
2016-06-27 19:51:05,223 DEBUG Call took: 0.084
2016-06-27 19:51:05,223 DEBUG Call took: 0.089
2016-06-27 19:51:05,223 DEBUG Call took: 0.084
2016-06-27 19:51:05,226 DEBUG Response: u'[{"action": "query", "data": [{"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "18f2368c-2a2b-11e5-a4ea-42010af03e00", "name": "DISNEY"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,226 DEBUG Response: u'[{"action": "query", "data": [{"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "18f2368c-2a2b-11e5-a4ea-42010af03e00", "name": "DISNEY"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,226 DEBUG Response: u'[{"action": "query", "data": [{"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "18f2368c-2a2b-11e5-a4ea-42010af03e00", "name": "DISNEY"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,226 DEBUG Response: u'[{"action": "query", "data": [{"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "18f2368c-2a2b-11e5-a4ea-42010af03e00", "name": "DISNEY"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,226 DEBUG Response: u'[{"action": "query", "data": [{"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "18f2368c-2a2b-11e5-a4ea-42010af03e00", "name": "DISNEY"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,230 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'18f2368c-2a2b-11e5-a4ea-42010af03e00', u'name': u'DISNEY'}.
Y"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "19833c4e-37be-11e6-b028-42010af03e00", "name": "projectname_aaaaaaaaaaaaa"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2", "name": "projectname_5e7128612dba11e6951b463500000031"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "1e45d4d4-1ea2-11e5-97c8-04013b2bc401", "name": "MASTER_TEAMSPACE"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4377c4d0-36f0-11e6-b885-42010af03e00", "name": "CHEVRON_VR_64058"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "4ec3fe90-b486-11e5-8ed2-42010af03e00", "name": "S:\\\\PEPSI_ASSETS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7489bd5a-44f0-11e5-afb5-42010af03e00", "name": "CLASH_OF_CLANS_38151"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "7789ed72-ef9a-11e5-a780-42010af03e00", "name": "DEWCISION_VR_61712"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "8245da22-206a-11e6-9633-42010af03e00", "name": "MikeTest"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9728ee6c-7bfa-11e5-93bb-42010af03e00", "name": "CLASH_OF_CLANS_WEBBUILD"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "9f267766-cb54-11e5-ba51-42010af03e00", "name": "CLASH_OF_CLANS"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "ae2fdde4-83d6-11e5-8a0d-42010af03e00", "name": "TIAA_ENGAGEMENT_ENGINE_PLANNING_60477"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "b98f373a-9230-11e5-870b-42010af03e00", "name": "PITCH_WORK"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "e06a026c-bec3-11e5-bf49-42010af03e00", "name": "DEW_NBA_VR_2016_X"}, {"context_type": "show", "parent_id": null, "__entity_type__": "Project", "id": "f75c3622-b8a4-11e5-896b-42010af03e00", "name": "AUDIBLE_STSY-2015_52212"}], "metadata": {"next": {"offset": null}}}]'
2016-06-27 19:51:05,230 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'18f2368c-2a2b-11e5-a4ea-42010af03e00', u'name': u'DISNEY'}.
2016-06-27 19:51:05,230 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'18f2368c-2a2b-11e5-a4ea-42010af03e00', u'name': u'DISNEY'}.
2016-06-27 19:51:05,230 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'18f2368c-2a2b-11e5-a4ea-42010af03e00', u'name': u'DISNEY'}.
2016-06-27 19:51:05,230 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'18f2368c-2a2b-11e5-a4ea-42010af03e00', u'name': u'DISNEY'}.
2016-06-27 19:51:05,233 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'19833c4e-37be-11e6-b028-42010af03e00', u'name': u'projectname_aaaaaaaaaaaaa'}.
2016-06-27 19:51:05,233 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'19833c4e-37be-11e6-b028-42010af03e00', u'name': u'projectname_aaaaaaaaaaaaa'}.
2016-06-27 19:51:05,234 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'19833c4e-37be-11e6-b028-42010af03e00', u'name': u'projectname_aaaaaaaaaaaaa'}.
2016-06-27 19:51:05,233 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'19833c4e-37be-11e6-b028-42010af03e00', u'name': u'projectname_aaaaaaaaaaaaa'}.
2016-06-27 19:51:05,234 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'19833c4e-37be-11e6-b028-42010af03e00', u'name': u'projectname_aaaaaaaaaaaaa'}.
2016-06-27 19:51:05,237 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2', u'name': u'projectname_5e7128612dba11e6951b463500000031'}.
2016-06-27 19:51:05,237 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2', u'name': u'projectname_5e7128612dba11e6951b463500000031'}.
2016-06-27 19:51:05,239 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2', u'name': u'projectname_5e7128612dba11e6951b463500000031'}.
2016-06-27 19:51:05,239 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2', u'name': u'projectname_5e7128612dba11e6951b463500000031'}.
2016-06-27 19:51:05,239 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2', u'name': u'projectname_5e7128612dba11e6951b463500000031'}.
2016-06-27 19:51:05,240 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,242 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,240 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,242 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,240 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,242 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401', u'name': u'MASTER_TEAMSPACE'}.
2016-06-27 19:51:05,244 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,246 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,244 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,244 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,246 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,246 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4377c4d0-36f0-11e6-b885-42010af03e00', u'name': u'CHEVRON_VR_64058'}.
2016-06-27 19:51:05,249 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4ec3fe90-b486-11e5-8ed2-42010af03e00', u'name': u'S:\\PEPSI_ASSETS'}.
2016-06-27 19:51:05,249 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4ec3fe90-b486-11e5-8ed2-42010af03e00', u'name': u'S:\\PEPSI_ASSETS'}.
2016-06-27 19:51:05,249 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4ec3fe90-b486-11e5-8ed2-42010af03e00', u'name': u'S:\\PEPSI_ASSETS'}.
2016-06-27 19:51:05,250 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4ec3fe90-b486-11e5-8ed2-42010af03e00', u'name': u'S:\\PEPSI_ASSETS'}.
2016-06-27 19:51:05,250 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'4ec3fe90-b486-11e5-8ed2-42010af03e00', u'name': u'S:\\PEPSI_ASSETS'}.
2016-06-27 19:51:05,252 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,253 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,252 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,252 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,253 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,253 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7489bd5a-44f0-11e5-afb5-42010af03e00', u'name': u'CLASH_OF_CLANS_38151'}.
2016-06-27 19:51:05,256 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7789ed72-ef9a-11e5-a780-42010af03e00', u'name': u'DEWCISION_VR_61712'}.
2016-06-27 19:51:05,257 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7789ed72-ef9a-11e5-a780-42010af03e00', u'name': u'DEWCISION_VR_61712'}.
2016-06-27 19:51:05,256 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7789ed72-ef9a-11e5-a780-42010af03e00', u'name': u'DEWCISION_VR_61712'}.
2016-06-27 19:51:05,256 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7789ed72-ef9a-11e5-a780-42010af03e00', u'name': u'DEWCISION_VR_61712'}.
2016-06-27 19:51:05,257 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'7789ed72-ef9a-11e5-a780-42010af03e00', u'name': u'DEWCISION_VR_61712'}.
2016-06-27 19:51:05,259 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
61712'}.
2016-06-27 19:51:05,259 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
2016-06-27 19:51:05,260 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
2016-06-27 19:51:05,259 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
2016-06-27 19:51:05,260 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
2016-06-27 19:51:05,260 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'8245da22-206a-11e6-9633-42010af03e00', u'name': u'MikeTest'}.
2016-06-27 19:51:05,263 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9728ee6c-7bfa-11e5-93bb-42010af03e00', u'name': u'CLASH_OF_CLANS_WEBBUILD'}.
2016-06-27 19:51:05,265 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9728ee6c-7bfa-11e5-93bb-42010af03e00', u'name': u'CLASH_OF_CLANS_WEBBUILD'}.
2016-06-27 19:51:05,263 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9728ee6c-7bfa-11e5-93bb-42010af03e00', u'name': u'CLASH_OF_CLANS_WEBBUILD'}.
2016-06-27 19:51:05,265 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9728ee6c-7bfa-11e5-93bb-42010af03e00', u'name': u'CLASH_OF_CLANS_WEBBUILD'}.
2016-06-27 19:51:05,265 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9728ee6c-7bfa-11e5-93bb-42010af03e00', u'name': u'CLASH_OF_CLANS_WEBBUILD'}.
2016-06-27 19:51:05,266 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9f267766-cb54-11e5-ba51-42010af03e00', u'name': u'CLASH_OF_CLANS'}.
2016-06-27 19:51:05,267 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9f267766-cb54-11e5-ba51-42010af03e00', u'name': u'CLASH_OF_CLANS'}.
2016-06-27 19:51:05,266 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9f267766-cb54-11e5-ba51-42010af03e00', u'name': u'CLASH_OF_CLANS'}.
2016-06-27 19:51:05,267 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'9f267766-cb54-11e5-ba51-42010af03e00', u'name': u'CLASH_OF_CLANS'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,270 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'ae2fdde4-83d6-11e5-8a0d-42010af03e00', u'name': u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'}.
2016-06-27 19:51:05,273 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,275 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,273 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,273 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,275 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,275 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'b98f373a-9230-11e5-870b-42010af03e00', u'name': u'PITCH_WORK'}.
2016-06-27 19:51:05,276 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,278 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,276 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,278 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,276 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,278 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'e06a026c-bec3-11e5-bf49-42010af03e00', u'name': u'DEW_NBA_VR_2016_X'}.
2016-06-27 19:51:05,280 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'f75c3622-b8a4-11e5-896b-42010af03e00', u'name': u'AUDIBLE_STSY-2015_52212'}.
2016-06-27 19:51:05,282 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'f75c3622-b8a4-11e5-896b-42010af03e00', u'name': u'AUDIBLE_STSY-2015_52212'}.
2016-06-27 19:51:05,280 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'f75c3622-b8a4-11e5-896b-42010af03e00', u'name': u'AUDIBLE_STSY-2015_52212'}.
2016-06-27 19:51:05,282 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'f75c3622-b8a4-11e5-896b-42010af03e00', u'name': u'AUDIBLE_STSY-2015_52212'}.
2016-06-27 19:51:05,282 DEBUG Reconstructing entity from {u'context_type': u'show', u'parent_id': None, u'__entity_type__': u'Project', u'id': u'f75c3622-b8a4-11e5-896b-42010af03e00', u'name': u'AUDIBLE_STSY-2015_52212'}.
2016-06-27 19:51:05,283 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261800
2016-06-27 19:51:05,283 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261800
2016-06-27 19:51:05,283 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261800
2016-06-27 19:51:05,285 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261184
2016-06-27 19:51:05,288 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,285 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261184
2016-06-27 19:51:05,288 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,285 DEBUG Merging entity into session: <Project(18f2368c-2a2b-11e5-a4ea-42010af03e00)> at 148261184
2016-06-27 19:51:05,288 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,292 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,292 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,292 DEBUG Entity not already processed for key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00']). Keys: []
2016-06-27 19:51:05,293 DEBUG Checking for entity in cache with key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00'])
2016-06-27 19:51:05,296 DEBUG Checking for entity in cache with key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00'])
2016-06-27 19:51:05,293 DEBUG Checking for entity in cache with key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00'])
2016-06-27 19:51:05,293 DEBUG Checking for entity in cache with key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00'])
2016-06-27 19:51:05,296 DEBUG Checking for entity in cache with key ('Project', ['18f2368c-2a2b-11e5-a4ea-42010af03e00'])
2016-06-27 19:51:05,298 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,298 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,299 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,298 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,299 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,299 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,299 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 141467432
2016-06-27 19:51:05,299 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 141467432
2016-06-27 19:51:05,302 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 138112920
2016-06-27 19:51:05,299 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 141467432
2016-06-27 19:51:05,302 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 138112920
2016-06-27 19:51:05,303 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,302 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 138112920
2016-06-27 19:51:05,303 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,303 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,305 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,305 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,306 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,306 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,305 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,306 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,312 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,309 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,312 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,312 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DISNEY'
2016-06-27 19:51:05,328 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,328 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,328 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,328 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,328 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,331 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,332 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,331 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,331 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,332 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,332 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'18f2368c-2a2b-11e5-a4ea-42010af03e00'
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,335 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,336 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148336824
2016-06-27 19:51:05,336 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148336824
2016-06-27 19:51:05,338 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148337328
2016-06-27 19:51:05,336 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148336824
2016-06-27 19:51:05,338 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148337328
2016-06-27 19:51:05,341 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,338 DEBUG Merging entity into session: <Project(19833c4e-37be-11e6-b028-42010af03e00)> at 148337328
2016-06-27 19:51:05,341 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,342 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,341 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,342 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,342 DEBUG Entity not already processed for key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00']). Keys: []
2016-06-27 19:51:05,344 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,344 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,345 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,344 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,345 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,345 DEBUG Checking for entity in cache with key ('Project', ['19833c4e-37be-11e6-b028-42010af03e00'])
2016-06-27 19:51:05,346 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,346 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,348 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,346 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,348 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,348 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,349 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 93288880
2016-06-27 19:51:05,351 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148211248
2016-06-27 19:51:05,349 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 93288880
2016-06-27 19:51:05,349 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 93288880

2016-06-27 19:51:05,351 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148211248
2016-06-27 19:51:05,354 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,354 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,355 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,354 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,355 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,358 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,361 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_aaaaaaaaaaaaa'
2016-06-27 19:51:05,361 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_aaaaaaaaaaaaa'
2016-06-27 19:51:05,361 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_aaaaaaaaaaaaa'
2016-06-27 19:51:05,361 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_aaaaaaaaaaaaa'
2016-06-27 19:51:05,361 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_aaaaaaaaaaaaa'
2016-06-27 19:51:05,365 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,365 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,365 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,365 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,371 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,368 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'19833c4e-37be-11e6-b028-42010af03e00'
2016-06-27 19:51:05,371 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,372 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,371 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,372 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,372 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,374 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337160
2016-06-27 19:51:05,375 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337552
2016-06-27 19:51:05,374 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337160
2016-06-27 19:51:05,375 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337552
2016-06-27 19:51:05,374 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337160
2016-06-27 19:51:05,375 DEBUG Merging entity into session: <Project(1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2)> at 148337552
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,378 DEBUG Entity not already processed for key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2']). Keys: []
2016-06-27 19:51:05,381 DEBUG Checking for entity in cache with key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'])
2016-06-27 19:51:05,382 DEBUG Checking for entity in cache with key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'])
2016-06-27 19:51:05,381 DEBUG Checking for entity in cache with key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'])
2016-06-27 19:51:05,382 DEBUG Checking for entity in cache with key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'])
2016-06-27 19:51:05,382 DEBUG Checking for entity in cache with key ('Project', ['1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'])
2016-06-27 19:51:05,384 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,384 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,384 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,384 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,384 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,387 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148260568
2016-06-27 19:51:05,388 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 93245680
2016-06-27 19:51:05,387 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148260568
2016-06-27 19:51:05,387 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148260568
2016-06-27 19:51:05,388 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 93245680
2016-06-27 19:51:05,392 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,394 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,392 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,394 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,392 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,394 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,397 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,397 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,397 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,397 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,397 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,400 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_5e7128612dba11e6951b463500000031'
2016-06-27 19:51:05,401 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_5e7128612dba11e6951b463500000031'
2016-06-27 19:51:05,400 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_5e7128612dba11e6951b463500000031'
2016-06-27 19:51:05,401 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_5e7128612dba11e6951b463500000031'
2016-06-27 19:51:05,401 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'projectname_5e7128612dba11e6951b463500000031'
2016-06-27 19:51:05,403 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,403 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,404 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,403 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,404 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,404 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,407 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'
2016-06-27 19:51:05,407 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'
2016-06-27 19:51:05,407 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'
2016-06-27 19:51:05,407 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'
2016-06-27 19:51:05,407 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1b6bd3d5-9a5f-4e7b-8ac3-b76a7b97ede2'
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,411 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337720
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337384
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337720
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337720
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337384
2016-06-27 19:51:05,417 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,414 DEBUG Merging entity into session: <Project(1e45d4d4-1ea2-11e5-97c8-04013b2bc401)> at 148337384
2016-06-27 19:51:05,417 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,417 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,418 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,418 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,420 DEBUG Checking for entity in cache with key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401'])
2016-06-27 19:51:05,418 DEBUG Entity not already processed for key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401']). Keys: []
2016-06-27 19:51:05,420 DEBUG Checking for entity in cache with key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401'])
2016-06-27 19:51:05,424 DEBUG Checking for entity in cache with key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401'])
2016-06-27 19:51:05,424 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,424 DEBUG Checking for entity in cache with key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401'])
2016-06-27 19:51:05,424 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,424 DEBUG Checking for entity in cache with key ('Project', ['1e45d4d4-1ea2-11e5-97c8-04013b2bc401'])
2016-06-27 19:51:05,424 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,427 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,427 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,427 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372984
2016-06-27 19:51:05,427 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,427 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372984
2016-06-27 19:51:05,430 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82373208
2016-06-27 19:51:05,427 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372984
2016-06-27 19:51:05,430 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82373208
2016-06-27 19:51:05,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,430 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82373208
2016-06-27 19:51:05,431 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,434 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,434 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,434 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,434 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,434 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,437 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,434 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,437 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,437 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,443 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,440 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MASTER_TEAMSPACE'
2016-06-27 19:51:05,443 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,443 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,444 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,444 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,446 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,444 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,446 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,447 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,446 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,447 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,447 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'1e45d4d4-1ea2-11e5-97c8-04013b2bc401'
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,450 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337104
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337216
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337104
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337216
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337104
2016-06-27 19:51:05,453 DEBUG Merging entity into session: <Project(4377c4d0-36f0-11e6-b885-42010af03e00)> at 148337216
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,460 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,457 DEBUG Entity not already processed for key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00']). Keys: []
2016-06-27 19:51:05,460 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,461 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,460 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,461 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,463 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,461 DEBUG Checking for entity in cache with key ('Project', ['4377c4d0-36f0-11e6-b885-42010af03e00'])
2016-06-27 19:51:05,463 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,463 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,464 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,464 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,466 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262248
2016-06-27 19:51:05,464 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,466 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262248
2016-06-27 19:51:05,466 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262248
2016-06-27 19:51:05,467 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372144
2016-06-27 19:51:05,469 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,467 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372144
2016-06-27 19:51:05,469 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,467 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82372144
2016-06-27 19:51:05,469 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,471 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,471 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,473 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,471 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,473 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,473 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,474 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,476 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,474 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,476 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,474 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,476 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,479 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,479 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,479 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,479 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CHEVRON_VR_64058'
2016-06-27 19:51:05,479 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,482 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,484 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,484 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,486 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,484 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4377c4d0-36f0-11e6-b885-42010af03e00'
2016-06-27 19:51:05,486 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,486 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,487 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,487 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,489 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337440
2016-06-27 19:51:05,487 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,489 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337440
2016-06-27 19:51:05,490 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337776
2016-06-27 19:51:05,489 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337440
2016-06-27 19:51:05,490 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337776
2016-06-27 19:51:05,490 DEBUG Merging entity into session: <Project(4ec3fe90-b486-11e5-8ed2-42010af03e00)> at 148337776
2016-06-27 19:51:05,493 DEBUG Entity not already processed for key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00']). Keys: []
2016-06-27 19:51:05,493 DEBUG Entity not already processed for key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00']). Keys: []
2016-06-27 19:51:05,493 DEBUG Entity not already processed for key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00']). Keys: []
2016-06-27 19:51:05,494 DEBUG Entity not already processed for key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00']). Keys: []
2016-06-27 19:51:05,496 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,494 DEBUG Entity not already processed for key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00']). Keys: []
2016-06-27 19:51:05,496 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,496 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,497 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,497 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,499 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,499 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,497 DEBUG Checking for entity in cache with key ('Project', ['4ec3fe90-b486-11e5-8ed2-42010af03e00'])
2016-06-27 19:51:05,499 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,500 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,500 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,500 DEBUG Reconstructing entity from {}.
structed new instance: <Project(Unknown)> at 82371752
2016-06-27 19:51:05,502 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82371752
2016-06-27 19:51:05,503 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262696
2016-06-27 19:51:05,502 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 82371752
2016-06-27 19:51:05,503 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262696
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,503 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262696
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,506 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,512 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'S:\\PEPSI_ASSETS'
2016-06-27 19:51:05,509 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,512 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'S:\\PEPSI_ASSETS'
2016-06-27 19:51:05,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'S:\\PEPSI_ASSETS'
2016-06-27 19:51:05,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'S:\\PEPSI_ASSETS'
2016-06-27 19:51:05,515 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,513 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'S:\\PEPSI_ASSETS'
2016-06-27 19:51:05,515 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,515 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,516 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,517 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,516 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,517 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,517 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,519 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,519 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,520 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,520 DEBUG Cache updated with merged entity.
l(NOT_SET) -> u'4ec3fe90-b486-11e5-8ed2-42010af03e00'
2016-06-27 19:51:05,520 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,523 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,523 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,523 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337608
2016-06-27 19:51:05,523 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,523 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337608
2016-06-27 19:51:05,523 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337608
2016-06-27 19:51:05,526 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337664
2016-06-27 19:51:05,526 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337664
2016-06-27 19:51:05,526 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,526 DEBUG Merging entity into session: <Project(7489bd5a-44f0-11e5-afb5-42010af03e00)> at 148337664
2016-06-27 19:51:05,526 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,526 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,529 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,529 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,529 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,529 DEBUG Entity not already processed for key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00']). Keys: []
2016-06-27 19:51:05,529 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,532 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,529 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,532 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,533 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,532 DEBUG Checking for entity in cache with key ('Project', ['7489bd5a-44f0-11e5-afb5-42010af03e00'])
2016-06-27 19:51:05,533 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,535 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,533 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,535 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,535 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,536 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339904
2016-06-27 19:51:05,536 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339904
2016-06-27 19:51:05,538 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262640
2016-06-27 19:51:05,536 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339904
2016-06-27 19:51:05,538 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262640
2016-06-27 19:51:05,540 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,538 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148262640
2016-06-27 19:51:05,540 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,542 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,540 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,542 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,543 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,542 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,543 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,543 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,545 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,546 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,545 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,545 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,546 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,546 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_38151'
2016-06-27 19:51:05,549 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,552 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,552 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7489bd5a-44f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,552 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,552 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,552 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7489bd5a-44f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,555 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7489bd5a-44f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,555 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7489bd5a-44f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,556 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,555 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7489bd5a-44f0-11e5-afb5-42010af03e00'
2016-06-27 19:51:05,556 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,556 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,559 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,559 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,559 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148337832
2016-06-27 19:51:05,559 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,559 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148337832
2016-06-27 19:51:05,559 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148337832
2016-06-27 19:51:05,562 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148338168
2016-06-27 19:51:05,562 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,562 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148338168
2016-06-27 19:51:05,562 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,562 DEBUG Merging entity into session: <Project(7789ed72-ef9a-11e5-a780-42010af03e00)> at 148338168
2016-06-27 19:51:05,562 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,565 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,566 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,565 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,566 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,565 DEBUG Entity not already processed for key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00']). Keys: []
2016-06-27 19:51:05,566 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,569 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,569 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,569 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,569 DEBUG Checking for entity in cache with key ('Project', ['7789ed72-ef9a-11e5-a780-42010af03e00'])
2016-06-27 19:51:05,569 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,569 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,572 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,572 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,572 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339848
2016-06-27 19:51:05,572 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,572 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339848
2016-06-27 19:51:05,575 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340016
2016-06-27 19:51:05,572 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339848
2016-06-27 19:51:05,575 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340016
2016-06-27 19:51:05,575 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,575 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340016
2016-06-27 19:51:05,575 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,578 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,578 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,578 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,578 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,578 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,579 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,578 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,579 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,582 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,579 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,582 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,584 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,582 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,584 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,584 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEWCISION_VR_61712'
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,585 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,588 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,589 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,588 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,588 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,589 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,592 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,589 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'7789ed72-ef9a-11e5-a780-42010af03e00'
2016-06-27 19:51:05,592 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,592 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,594 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148337888
2016-06-27 19:51:05,594 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148337888
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148338280
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148337888
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148338280
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,595 DEBUG Merging entity into session: <Project(8245da22-206a-11e6-9633-42010af03e00)> at 148338280
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,599 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,598 DEBUG Entity not already processed for key ('Project', ['8245da22-206a-11e6-9633-42010af03e00']). Keys: []
2016-06-27 19:51:05,599 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,604 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,599 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,604 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,607 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,604 DEBUG Checking for entity in cache with key ('Project', ['8245da22-206a-11e6-9633-42010af03e00'])
2016-06-27 19:51:05,607 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,607 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,608 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,609 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148336880
2016-06-27 19:51:05,609 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148336880
2016-06-27 19:51:05,611 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340520
2016-06-27 19:51:05,609 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148336880
2016-06-27 19:51:05,611 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340520
2016-06-27 19:51:05,615 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,615 DEBUG Merging new data into attached entity.
 new instance: <Project(Unknown)> at 148340520
2016-06-27 19:51:05,617 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,617 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,617 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,622 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,622 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,621 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,622 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,625 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,625 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,627 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,625 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'MikeTest'
2016-06-27 19:51:05,627 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,627 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,628 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,628 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,630 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,628 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,630 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,631 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,630 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,631 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,631 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'8245da22-206a-11e6-9633-42010af03e00'
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,634 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,637 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338056
2016-06-27 19:51:05,638 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338616
2016-06-27 19:51:05,637 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338056
2016-06-27 19:51:05,638 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338616
2016-06-27 19:51:05,637 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338056
2016-06-27 19:51:05,638 DEBUG Merging entity into session: <Project(9728ee6c-7bfa-11e5-93bb-42010af03e00)> at 148338616
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,642 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,641 DEBUG Entity not already processed for key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00']). Keys: []
2016-06-27 19:51:05,642 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,644 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,642 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,644 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,645 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,644 DEBUG Checking for entity in cache with key ('Project', ['9728ee6c-7bfa-11e5-93bb-42010af03e00'])
2016-06-27 19:51:05,645 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,645 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,647 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,647 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,648 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339512
2016-06-27 19:51:05,648 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339512
2016-06-27 19:51:05,650 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339960
2016-06-27 19:51:05,648 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339512
2016-06-27 19:51:05,650 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339960
2016-06-27 19:51:05,651 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,650 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339960
2016-06-27 19:51:05,651 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,654 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,654 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,654 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,654 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,654 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,654 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,657 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,658 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,657 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,658 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,658 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,661 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,661 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS_WEBBUILD'
2016-06-27 19:51:05,661 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,664 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,664 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,664 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
fa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,665 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9728ee6c-7bfa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,665 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9728ee6c-7bfa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,667 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9728ee6c-7bfa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,668 DEBUG Cache updated with merged entity.
l(NOT_SET) -> u'9728ee6c-7bfa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,667 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9728ee6c-7bfa-11e5-93bb-42010af03e00'
2016-06-27 19:51:05,668 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,668 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,671 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,671 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,671 DEBUG Merging entity into session: <Project(9f267766-cb54-11e5-ba51-42010af03e00)> at 148338112
2016-06-27 19:51:05,671 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,671 DEBUG Merging entity into session: <Project(9f267766-cb54-11e5-ba51-42010af03e00)> at 148338112
2016-06-27 19:51:05,674 DEBUG Merging entity into session: <Project(9f267766-cb54-11e5-ba51-42010af03e00)> at 148337496
2016-06-27 19:51:05,671 DEBUG Merging entity into session: <Project(9f267766-cb54-11e5-ba51-42010af03e00)> at 148338112
2016-06-27 19:51:05,674 DEBUG Merging entity into session: <Project(9f267766-cb54-11e5-ba51-42010af03e00)> at 148337496
2016-06-27 19:51:05,677 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,677 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,677 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,680 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,680 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,680 DEBUG Checking for entity in cache with key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00'])
2016-06-27 19:51:05,680 DEBUG Entity not already processed for key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00']). Keys: []
2016-06-27 19:51:05,680 DEBUG Checking for entity in cache with key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00'])
2016-06-27 19:51:05,684 DEBUG Checking for entity in cache with key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00'])
2016-06-27 19:51:05,684 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,684 DEBUG Checking for entity in cache with key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00'])
2016-06-27 19:51:05,684 DEBUG Reconstructing entity from {}.
h key ('Project', ['9f267766-cb54-11e5-ba51-42010af03e00'])
2016-06-27 19:51:05,684 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,687 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,687 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,687 DEBUG Reconstructing entity from {}.
structed new instance: <Project(Unknown)> at 148340408
2016-06-27 19:51:05,687 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340408
2016-06-27 19:51:05,690 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340072
2016-06-27 19:51:05,687 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340408
2016-06-27 19:51:05,690 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340072
2016-06-27 19:51:05,694 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,690 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340072
2016-06-27 19:51:05,694 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,694 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,696 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,696 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,697 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,697 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,700 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,697 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,700 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,704 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'CLASH_OF_CLANS'
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,710 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,707 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,710 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,710 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,711 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,711 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,713 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,711 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'9f267766-cb54-11e5-ba51-42010af03e00'
2016-06-27 19:51:05,713 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,713 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,714 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,714 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,716 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338560
2016-06-27 19:51:05,714 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,716 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338560
2016-06-27 19:51:05,716 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338560
2016-06-27 19:51:05,717 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338952
2016-06-27 19:51:05,720 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,717 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338952
2016-06-27 19:51:05,720 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,717 DEBUG Merging entity into session: <Project(ae2fdde4-83d6-11e5-8a0d-42010af03e00)> at 148338952
2016-06-27 19:51:05,720 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,724 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,726 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,724 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,726 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,724 DEBUG Entity not already processed for key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00']). Keys: []
2016-06-27 19:51:05,726 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,727 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,727 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,729 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,727 DEBUG Checking for entity in cache with key ('Project', ['ae2fdde4-83d6-11e5-8a0d-42010af03e00'])
2016-06-27 19:51:05,729 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,729 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,730 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,730 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340576
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340576
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340464
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340576
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340464
2016-06-27 19:51:05,736 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,733 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340464
2016-06-27 19:51:05,736 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,736 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,737 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,737 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,743 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,740 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,743 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,743 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,744 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,744 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,746 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,744 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'TIAA_ENGAGEMENT_ENGINE_PLANNING_60477'
2016-06-27 19:51:05,746 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,746 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,747 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,747 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,749 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,747 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,749 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,749 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,750 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,753 DEBUG Cache updated with merged entity.
l(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,750 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'ae2fdde4-83d6-11e5-8a0d-42010af03e00'
2016-06-27 19:51:05,753 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,753 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,756 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,756 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,756 DEBUG Cache updated with merged entity.
ct(b98f373a-9230-11e5-870b-42010af03e00)> at 148338784
2016-06-27 19:51:05,757 DEBUG Merging entity into session: <Project(b98f373a-9230-11e5-870b-42010af03e00)> at 148338784
2016-06-27 19:51:05,762 DEBUG Merging entity into session: <Project(b98f373a-9230-11e5-870b-42010af03e00)> at 148339008
2016-06-27 19:51:05,757 DEBUG Merging entity into session: <Project(b98f373a-9230-11e5-870b-42010af03e00)> at 148338784
2016-06-27 19:51:05,762 DEBUG Merging entity into session: <Project(b98f373a-9230-11e5-870b-42010af03e00)> at 148339008
2016-06-27 19:51:05,765 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,765 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,765 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,766 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,766 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,767 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,766 DEBUG Entity not already processed for key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00']). Keys: []
2016-06-27 19:51:05,767 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,767 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,769 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,772 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,769 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,769 DEBUG Checking for entity in cache with key ('Project', ['b98f373a-9230-11e5-870b-42010af03e00'])
2016-06-27 19:51:05,772 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,772 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,773 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,773 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,775 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340352
2016-06-27 19:51:05,773 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,775 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340352
2016-06-27 19:51:05,775 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148340352
2016-06-27 19:51:05,776 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339624
2016-06-27 19:51:05,778 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,776 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339624
2016-06-27 19:51:05,778 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,776 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 148339624
2016-06-27 19:51:05,778 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,780 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,780 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,780 DEBUG Merging new data into attached entity.
Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,780 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,782 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,780 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,782 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,785 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'
2016-06-27 19:51:05,785 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'

2016-06-27 19:51:05,786 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'
2016-06-27 19:51:05,785 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'
2016-06-27 19:51:05,786 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'
2016-06-27 19:51:05,786 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'PITCH_WORK'
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,792 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,789 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,792 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,793 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,792 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,793 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,793 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'b98f373a-9230-11e5-870b-42010af03e00'
2016-06-27 19:51:05,795 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,795 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,796 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,795 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,796 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,796 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,798 DEBUG Merging entity into session: <Project(e06a026c-bec3-11e5-bf49-42010af03e00)> at 148339120
2016-06-27 19:51:05,798 DEBUG Merging entity into session: <Project(e06a026c-bec3-11e5-bf49-42010af03e00)> at 148339120
2016-06-27 19:51:05,799 DEBUG Merging entity into session: <Project(e06a026c-bec3-11e5-bf49-42010af03e00)> at 148339176
2016-06-27 19:51:05,798 DEBUG Merging entity into session: <Project(e06a026c-bec3-11e5-bf49-42010af03e00)> at 148339120
2016-06-27 19:51:05,799 DEBUG Merging entity into session: <Project(e06a026c-bec3-11e5-bf49-42010af03e00)> at 148339176
2016-06-27 19:51:05,801 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,801 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,803 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,801 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,803 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,805 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,803 DEBUG Entity not already processed for key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00']). Keys: []
2016-06-27 19:51:05,805 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,806 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,805 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,806 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,806 DEBUG Checking for entity in cache with key ('Project', ['e06a026c-bec3-11e5-bf49-42010af03e00'])
2016-06-27 19:51:05,808 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,809 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,808 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,809 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,809 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,811 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150159544
2016-06-27 19:51:05,811 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150159544
2016-06-27 19:51:05,812 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160496
2016-06-27 19:51:05,811 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150159544
2016-06-27 19:51:05,812 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160496
2016-06-27 19:51:05,815 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,812 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160496
2016-06-27 19:51:05,815 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,815 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,815 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,815 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,818 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,818 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,818 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,819 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,819 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,822 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEW_NBA_VR_2016_X'
2016-06-27 19:51:05,822 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEW_NBA_VR_2016_X'
2016-06-27 19:51:05,822 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEW_NBA_VR_2016_X'
2016-06-27 19:51:05,822 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEW_NBA_VR_2016_X'
2016-06-27 19:51:05,825 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,822 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'DEW_NBA_VR_2016_X'
2016-06-27 19:51:05,825 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,825 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,826 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,826 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,828 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'e06a026c-bec3-11e5-bf49-42010af03e00'
2016-06-27 19:51:05,828 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'e06a026c-bec3-11e5-bf49-42010af03e00'
2016-06-27 19:51:05,829 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'e06a026c-bec3-11e5-bf49-42010af03e00'
2016-06-27 19:51:05,829 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'e06a026c-bec3-11e5-bf49-42010af03e00'
2016-06-27 19:51:05,831 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,829 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'e06a026c-bec3-11e5-bf49-42010af03e00'
2016-06-27 19:51:05,831 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,832 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,831 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,832 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,832 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,834 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339344
2016-06-27 19:51:05,834 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339344
2016-06-27 19:51:05,835 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339736
2016-06-27 19:51:05,834 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339344
2016-06-27 19:51:05,835 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339736
2016-06-27 19:51:05,835 DEBUG Merging entity into session: <Project(f75c3622-b8a4-11e5-896b-42010af03e00)> at 148339736
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,841 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,838 DEBUG Entity not already processed for key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00']). Keys: []
2016-06-27 19:51:05,841 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,842 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,841 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,842 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,842 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,842 DEBUG Checking for entity in cache with key ('Project', ['f75c3622-b8a4-11e5-896b-42010af03e00'])
2016-06-27 19:51:05,842 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,845 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,842 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,845 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,845 DEBUG Reconstructing entity from {}.
2016-06-27 19:51:05,845 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160216
2016-06-27 19:51:05,846 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160328
2016-06-27 19:51:05,845 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160216
2016-06-27 19:51:05,846 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160328
2016-06-27 19:51:05,845 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160216
2016-06-27 19:51:05,846 DEBUG Entity not present in cache. Constructed new instance: <Project(Unknown)> at 150160328
2016-06-27 19:51:05,849 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,851 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,849 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,851 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,849 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,851 DEBUG Merging new data into attached entity.
2016-06-27 19:51:05,852 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,854 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,852 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,854 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,855 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,854 DEBUG Merged remote_attribute "context_type": Symbol(NOT_SET) -> u'show'
2016-06-27 19:51:05,855 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,858 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,855 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,858 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,858 DEBUG Merged remote_attribute "name": Symbol(NOT_SET) -> u'AUDIBLE_STSY-2015_52212'
2016-06-27 19:51:05,858 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,858 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,861 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,861 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,862 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'f75c3622-b8a4-11e5-896b-42010af03e00'
2016-06-27 19:51:05,861 DEBUG Merged remote_attribute "parent_id": Symbol(NOT_SET) -> None
2016-06-27 19:51:05,862 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'f75c3622-b8a4-11e5-896b-42010af03e00'
2016-06-27 19:51:05,864 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'f75c3622-b8a4-11e5-896b-42010af03e00'
2016-06-27 19:51:05,864 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'f75c3622-b8a4-11e5-896b-42010af03e00'
2016-06-27 19:51:05,864 DEBUG Merged remote_attribute "id": Symbol(NOT_SET) -> u'f75c3622-b8a4-11e5-896b-42010af03e00'
2016-06-27 19:51:05,865 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,867 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,865 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,867 DEBUG Cache updated with merged entity.
2016-06-27 19:51:05,867 DEBUG Cache updated with merged entity.
2016-06-27 19:51:12,928 DEBUG Received packet: 2::
2016-06-27 19:51:12,928 DEBUG Received packet: 2::
2016-06-27 19:51:12,928 DEBUG Received packet: 2::
2016-06-27 19:51:12,933 DEBUG Sent packet: 2:::
2016-06-27 19:51:12,933 DEBUG Sent packet: 2:::
2016-06-27 19:51:12,933 DEBUG Sent packet: 2:::
2016-06-27 19:51:13,954 DEBUG Received packet: 2::
2016-06-27 19:51:13,954 DEBUG Received packet: 2::
2016-06-27 19:51:13,954 DEBUG Received packet: 2::
2016-06-27 19:51:13,957 DEBUG Sent packet: 2:::
2016-06-27 19:51:13,957 DEBUG Sent packet: 2:::
2016-06-27 19:51:13,957 DEBUG Sent packet: 2:::
2016-06-27 19:51:24,931 DEBUG Received packet: 2::
2016-06-27 19:51:24,931 DEBUG Received packet: 2::
2016-06-27 19:51:24,931 DEBUG Received packet: 2::
2016-06-27 19:51:24,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:24,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:24,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:25,957 DEBUG Received packet: 2::
2016-06-27 19:51:25,957 DEBUG Received packet: 2::
2016-06-27 19:51:25,957 DEBUG Received packet: 2::
2016-06-27 19:51:25,959 DEBUG Sent packet: 2:::
2016-06-27 19:51:25,959 DEBUG Sent packet: 2:::
2016-06-27 19:51:25,959 DEBUG Sent packet: 2:::
2016-06-27 19:51:36,933 DEBUG Received packet: 2::
2016-06-27 19:51:36,933 DEBUG Received packet: 2::
2016-06-27 19:51:36,933 DEBUG Received packet: 2::
2016-06-27 19:51:36,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:36,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:36,934 DEBUG Sent packet: 2:::
2016-06-27 19:51:37,959 DEBUG Received packet: 2::
2016-06-27 19:51:37,959 DEBUG Received packet: 2::
2016-06-27 19:51:37,959 DEBUG Received packet: 2::
2016-06-27 19:51:37,961 DEBUG Sent packet: 2:::
2016-06-27 19:51:37,961 DEBUG Sent packet: 2:::
2016-06-27 19:51:37,961 DEBUG Sent packet: 2:::
2016-06-27 19:51:48,934 DEBUG Received packet: 2::
2016-06-27 19:51:48,934 DEBUG Received packet: 2::
2016-06-27 19:51:48,934 DEBUG Received packet: 2::
2016-06-27 19:51:48,937 DEBUG Sent packet: 2:::
2016-06-27 19:51:48,937 DEBUG Sent packet: 2:::
2016-06-27 19:51:48,937 DEBUG Sent packet: 2:::
2016-06-27 19:51:49,959 DEBUG Received packet: 2::
2016-06-27 19:51:49,959 DEBUG Received packet: 2::
2016-06-27 19:51:49,959 DEBUG Received packet: 2::
2016-06-27 19:51:49,960 DEBUG Sent packet: 2:::
2016-06-27 19:51:49,960 DEBUG Sent packet: 2:::
2016-06-27 19:51:49,960 DEBUG Sent packet: 2:::

 

 

Link to comment
Share on other sites

Found the problem.  The prefix should remain as 'Program Files.*':

prefix = ['C:\\', 'Program Files.*']

applications.extend(self._searchFilesystem(
	expression=(
		prefix +
		['Epic Games', '4.*', 'Engine', 'Binaries', 'Win64', 'UE4Editor.exe']
	),
	label='Unreal Engine',
	variant='{version}',
	applicationIdentifier='unreal_{version}'
))

I'm currently trying to work out how to get the different versions to display correctly though.  Right now the versions show up like so:

Capture.JPG

Link to comment
Share on other sites

It worked! I'm not totally familiar with regex, but after reading some of the docs and a little trial and error I was able to get it.  

Here's the full action.  It only works on windows because I don't have access to another OS right now:

import logging
import sys
import pprint
import os
import re

import ftrack
import ftrack_connect.application

logger = logging.getLogger()

class UnrealAction(object):
	'''Launch Unreal action.'''

	# Unique action identifier.
	identifier = 'mb-unreal-launch-action'

	def __init__(self, applicationStore, launcher):
		'''Initialise action with *applicationStore* and *launcher*.

		*applicationStore* should be an instance of
		:class:`ftrack_connect.application.ApplicationStore`.

		*launcher* should be an instance of
		:class:`ftrack_connect.application.ApplicationLauncher`.

		'''
		super(UnrealAction, self).__init__()

		#self.logger = logging.getLogger(
		#	__name__ + '.' + self.__class__.__name__
		#)

		self.applicationStore = applicationStore
		self.launcher = launcher

		if self.identifier is None:
			raise ValueError('The action must be given an identifier.')

	def register(self):
		'''Register action to respond to discover and launch events.'''
		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.discover',
			self.discover
		)

		ftrack.EVENT_HUB.subscribe(
			'topic=ftrack.action.launch and data.actionIdentifier={0}'.format(
				self.identifier
			),
			self.launch
		)



	def discover(self, event):
		'''Return available actions based on *event*.

		Each action should contain

			actionIdentifier - Unique identifier for the action
			label - Nice name to display in ftrack
			variant - Variant or version of the application.
			icon(optional) - predefined icon or URL to an image
			applicationIdentifier - Unique identifier to identify application
									in store.

		'''
		selection = event['data'].get('selection', [])
		items = []
		applications = self.applicationStore.applications
		applications = sorted(
			applications, key=lambda application: application['label']
		)

		if len(selection) != 1 or selection[0]['entityType'] == 'task':
			return

		for item in selection: 

			entity = ftrack.Project(item.get('entityId')) 

			if not entity:
				return 

			for application in applications:
				applicationIdentifier = application['identifier']
				label = application['label']
				items.append({
					'actionIdentifier': self.identifier,
					'label': label,
					'variant': application.get('variant', None),
					'description': application.get('description', None),
					'icon': 'https://pbs.twimg.com/profile_images/496317299960188930/qLLBiqBE.png',
					'applicationIdentifier': applicationIdentifier
				})


		return {
			'items': items
		}


	def launch(self, event):
		'''Callback method for Unreal action.'''
		applicationIdentifier = (
			event['data']['applicationIdentifier']
		)

		context = event['data'].copy()

		return self.launcher.launch(
			applicationIdentifier, context
		)


class ApplicationStore(ftrack_connect.application.ApplicationStore):
	'''Store used to find and keep track of available applications.'''

	def _discoverApplications(self):
		'''Return a list of applications that can be launched from this host.
		'''
		applications = []

		# Not implemented yet
		#if sys.platform == 'darwin':
		#	prefix = ['/', 'Applications']

		#	applications.extend(self._searchFilesystem(
		#		expression=prefix + [
		#			'Unreal*', 'Unreal.app'
		#		],
		#		label='Unreal',
		#		variant='{version}',
		#		applicationIdentifier='unreal_{version}'
		#	))

		#elif sys.platform == 'win32':  # Use this when reimplementing apple platform
		if sys.platform == 'win32':
			prefix = ['C:\\', 'Program Files.*']

			# Specify custom expression for Unreal to ensure the complete version
			# number (e.g. 9.0v3) is picked up.
			unreal_version_expression = re.compile(
				r'(?P<version>[\d.]+[\d.]+[\d.])'
			)
			logger.info('Unreal version:\n{0}'.format(unreal_version_expression))

			applications.extend(self._searchFilesystem(
				expression=(
					prefix +
					['Epic Games', '4.*', 'Engine', 'Binaries', 'Win64', 'UE4Editor.exe']
				),
				versionExpression=unreal_version_expression,
				label='Unreal Engine',
				variant='{version}',
				applicationIdentifier='unreal_{version}'
			))

		logger.debug(
			'Discovered applications:\n{0}'.format(
				pprint.pformat(applications)
			)
		)

		return applications


class ApplicationLauncher(ftrack_connect.application.ApplicationLauncher):
	'''Custom launcher to modify environment before launch.'''

	def _getApplicationEnvironment(
		self, application, context=None
	):
		'''Override to modify environment before launch.'''

		# Make sure to call super to retrieve original environment
		# which contains the selection and ftrack API.
		environment = super(
			ApplicationLauncher, self
		)._getApplicationEnvironment(application, context)

		# Append or Prepend values to the environment.
		# Note that if you assign manually you will overwrite any
		# existing values on that variable.


		# Add my custom path to the UNREAL_SCRIPT_PATH.
		environment = ftrack_connect.application.appendPath(
			'path/to/my/custom/scripts',
			'UNREAL_SCRIPT_PATH',
			environment
		)

		# Set an internal user id of some kind.
		environment = ftrack_connect.application.appendPath(
			'my-unique-user-id-123',
			'STUDIO_SPECIFIC_USERID',
			environment
		)

		# Always return the environment at the end.
		return environment

def register(registry, **kw):
	'''Register hooks.'''

	# Validate that registry is the correct ftrack.Registry. If not,
	# assume that register is being called with another purpose or from a
	# new or incompatible API and return without doing anything.
	if registry is not ftrack.EVENT_HANDLERS:
		# Exit to avoid registering this plugin again.
		return

	# Create store containing applications.
	applicationStore = ApplicationStore()

	# Create a launcher with the store containing applications.
	launcher = ApplicationLauncher(
		applicationStore
	)

	# Create action and register to respond to discover and launch actions.
	action = UnrealAction(applicationStore, launcher)
	action.register()

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...