mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
device register: Stop fetching unnecessary app fields
Change-type: patch
This commit is contained in:
parent
15dac6f194
commit
8b3235ab2b
@ -78,7 +78,9 @@ export default class DeviceRegisterCmd extends Command {
|
|||||||
|
|
||||||
const balena = getBalenaSdk();
|
const balena = getBalenaSdk();
|
||||||
|
|
||||||
const application = await getApplication(balena, params.fleet);
|
const application = await getApplication(balena, params.fleet, {
|
||||||
|
$select: ['id', 'slug'],
|
||||||
|
});
|
||||||
const uuid = options.uuid ?? balena.models.device.generateUniqueKey();
|
const uuid = options.uuid ?? balena.models.device.generateUniqueKey();
|
||||||
|
|
||||||
console.info(`Registering to ${application.slug}: ${uuid}`);
|
console.info(`Registering to ${application.slug}: ${uuid}`);
|
||||||
|
Loading…
Reference in New Issue
Block a user