Skip to content

Commit eed0dcb

Browse files
committed
fix(backend): DeploymentEvent interface not working
The minimum supported version of `DeploymentEvent` interface is `0.1`. Signed-off-by: Luca Zaninotto <luca.zaninotto@secomind.com>
1 parent 4678f4c commit eed0dcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/lib/edgehog/capabilities.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ defmodule Edgehog.Capabilities do
125125
%Astarte.InterfaceID{
126126
name: "io.edgehog.devicemanager.apps.DeploymentEvent",
127127
major: 0,
128-
minor: 2
128+
minor: 1
129129
},
130130
%Astarte.InterfaceID{
131131
name: "io.edgehog.devicemanager.apps.DeploymentUpdate",

backend/test/edgehog/capabilities_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ defmodule Edgehog.CapabilitiesTest do
8181
minor: 1
8282
},
8383
"io.edgehog.devicemanager.apps.AvailableImages" => %InterfaceVersion{major: 0, minor: 1},
84-
"io.edgehog.devicemanager.apps.DeploymentEvent" => %InterfaceVersion{major: 0, minor: 2},
84+
"io.edgehog.devicemanager.apps.DeploymentEvent" => %InterfaceVersion{major: 0, minor: 1},
8585
"io.edgehog.devicemanager.apps.CreateContainerRequest" => %InterfaceVersion{
8686
major: 0,
8787
minor: 1

0 commit comments

Comments
 (0)