Fix the case of being registered with a version of the cli/sdk that does not support device api keys.

Change-Type: patch
This commit is contained in:
Pagan Gazzard 2017-04-26 13:52:43 -07:00
parent 6a7ff91180
commit 89ccb6480d

View File

@ -106,7 +106,9 @@ bootstrap = ->
.then ->
knex('config').insert([
{ key: 'uuid', value: userConfig.uuid }
{ key: 'apiKey', value: userConfig.deviceApiKey }
# We use the provisioning/user `apiKey` if it still exists because if it does it means we were already registered
# using that key and have to rely on the exchange key mechanism to swap the keys as appropriate later
{ key: 'apiKey', value: userConfig.apiKey ? userConfig.deviceApiKey }
{ key: 'username', value: userConfig.username }
{ key: 'userId', value: userConfig.userId }
{ key: 'version', value: utils.supervisorVersion }