mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-24 16:03:43 +08:00
fix(region): aws sync vpc access mode bugfix
This commit is contained in:
@@ -286,6 +286,9 @@ func (self SI18n) GetExternalId() string {
|
||||
|
||||
func (self *SI18n) Lookup(ctx context.Context) string {
|
||||
entry := i18n.NewTableEntry().CN(self.Cn).EN(self.En)
|
||||
v, _ := entry.Lookup(ctx)
|
||||
return v
|
||||
if v, ok := entry.Lookup(ctx); ok {
|
||||
return v
|
||||
}
|
||||
|
||||
return self.KeyValue
|
||||
}
|
||||
|
||||
@@ -14,7 +14,6 @@ type SInternetGateway struct {
|
||||
Attachments []InternetGatewayAttachment `json:"Attachments"`
|
||||
InternetGatewayID string `json:"InternetGatewayId"`
|
||||
OwnerID string `json:"OwnerId"`
|
||||
Tags []interface{} `json:"Tags"`
|
||||
}
|
||||
|
||||
type InternetGatewayAttachment struct {
|
||||
|
||||
@@ -428,7 +428,6 @@ func (self *SVpc) GetExternalAccessMode() string {
|
||||
igws, err := self.region.GetInternetGateways(self.GetId())
|
||||
if err != nil {
|
||||
log.Errorf("GetExternalAccessMode.GetInternetGateways %s", err)
|
||||
|
||||
}
|
||||
|
||||
if len(igws) > 0 {
|
||||
|
||||
Reference in New Issue
Block a user