Skip to content

Commit fb98cba

Browse files
committed
rebase to master
1 parent dec9000 commit fb98cba

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

client/contivModel.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -389,12 +389,6 @@ var PolicyModalView = React.createClass({
389389

390390
<Input type='text' label='Tenant Name' ref='tenantName' defaultValue={obj.tenantName} placeholder='Tenant Name' />
391391

392-
<Input type='text' label='To Endpoint Group' ref='toEndpointGroup' defaultValue={obj.toEndpointGroup} placeholder='To Endpoint Group' />
393-
394-
<Input type='text' label='IP Address' ref='toIpAddress' defaultValue={obj.toIpAddress} placeholder='IP Address' />
395-
396-
<Input type='text' label='To Network' ref='toNetwork' defaultValue={obj.toNetwork} placeholder='To Network' />
397-
398392
</div>
399393
<div className='modal-footer'>
400394
<Button onClick={this.props.onRequestHide}>Close</Button>
@@ -512,6 +506,12 @@ var RuleModalView = React.createClass({
512506

513507
<Input type='text' label='Tenant Name' ref='tenantName' defaultValue={obj.tenantName} placeholder='Tenant Name' />
514508

509+
<Input type='text' label='To Endpoint Group' ref='toEndpointGroup' defaultValue={obj.toEndpointGroup} placeholder='To Endpoint Group' />
510+
511+
<Input type='text' label='IP Address' ref='toIpAddress' defaultValue={obj.toIpAddress} placeholder='IP Address' />
512+
513+
<Input type='text' label='To Network' ref='toNetwork' defaultValue={obj.toNetwork} placeholder='To Network' />
514+
515515
</div>
516516
<div className='modal-footer'>
517517
<Button onClick={this.props.onRequestHide}>Close</Button>

client/contivModelClient.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -593,12 +593,12 @@ func (c *ContivClient) BgpPost(obj *Bgp) error {
593593
}
594594

595595
// BgpList lists all Bgp objects
596-
func (c *ContivClient) BgpList() (*[]Bgp, error) {
596+
func (c *ContivClient) BgpList() (*[]*Bgp, error) {
597597
// build key and URL
598598
url := c.baseURL + "/api/Bgps/"
599599

600600
// http get the object
601-
var objList []Bgp
601+
var objList []*Bgp
602602
err := httpGet(url, &objList)
603603
if err != nil {
604604
log.Errorf("Error getting Bgps. Err: %v", err)

contivModel.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -1842,14 +1842,6 @@ func ValidateNetwork(obj *Network) error {
18421842
return errors.New("tenantName string too long")
18431843
}
18441844

1845-
if len(obj.ToEndpointGroup) > 64 {
1846-
return errors.New("toEndpointGroup string too long")
1847-
}
1848-
1849-
if len(obj.ToNetwork) > 64 {
1850-
return errors.New("toNetwork string too long")
1851-
}
1852-
18531845
return nil
18541846
}
18551847

@@ -2369,6 +2361,14 @@ func ValidateRule(obj *Rule) error {
23692361
return errors.New("tenantName string too long")
23702362
}
23712363

2364+
if len(obj.ToEndpointGroup) > 64 {
2365+
return errors.New("toEndpointGroup string too long")
2366+
}
2367+
2368+
if len(obj.ToNetwork) > 64 {
2369+
return errors.New("toNetwork string too long")
2370+
}
2371+
23722372
return nil
23732373
}
23742374

0 commit comments

Comments
 (0)