Skip to content

Commit

Permalink
feat(CLOUDDEV-711): added Error variable ErrMultipleIfaceWithSameSubnet
Browse files Browse the repository at this point in the history
  • Loading branch information
damir.zinatullin committed Jun 28, 2024
1 parent 915e125 commit ec91e28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions instances.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package edgecloud

import (
"context"
"errors"
"fmt"
"net"
"net/http"
Expand All @@ -12,6 +13,8 @@ const (
instancesBasePathV2 = "/v2/instances"
)

var ErrMultipleIfaceWithSameSubnet = errors.New("multiple instance interfaces in the same subnet")

const (
instancesCheckLimits = "check_limits"
instancesChangeFlavor = "changeflavor"
Expand Down

0 comments on commit ec91e28

Please sign in to comment.