Skip to content

Commit

Permalink
Ignore host app service installs for device service env vars
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
otaviojacobi committed Nov 21, 2024
1 parent a61d66e commit 24e60ea
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/models/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2932,6 +2932,16 @@ const getDeviceModel = function (
$expr: {
is: {
service_name: serviceNameOrId,
application: {
$any: {
$alias: 'a',
$expr: {
a: {
is_host: false,
},
},
},
},
},
},
},
Expand Down Expand Up @@ -3018,6 +3028,16 @@ const getDeviceModel = function (
$expr: {
s: {
service_name: serviceNameOrId,
application: {
$any: {
$alias: 'a',
$expr: {
a: {
is_host: false,
},
},
},
},
},
},
},
Expand Down Expand Up @@ -3099,6 +3119,16 @@ const getDeviceModel = function (
$expr: {
is: {
service_name: serviceNameOrId,
application: {
$any: {
$alias: 'a',
$expr: {
a: {
is_host: false,
},
},
},
},
},
},
},
Expand Down

0 comments on commit 24e60ea

Please sign in to comment.