Changes argspec to no longer enforce strict int (#48901)
The route domain parent can be a string instead of an int. this patch chanes the argspec to allow this.
This commit is contained in:
parent
8d2beea1cf
commit
fdb5b124fd
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ class ArgumentSpec(object):
|
||||||
id=dict(type='int'),
|
id=dict(type='int'),
|
||||||
description=dict(),
|
description=dict(),
|
||||||
strict=dict(type='bool'),
|
strict=dict(type='bool'),
|
||||||
parent=dict(type='int'),
|
parent=dict(),
|
||||||
vlans=dict(type='list'),
|
vlans=dict(type='list'),
|
||||||
routing_protocol=dict(
|
routing_protocol=dict(
|
||||||
type='list',
|
type='list',
|
||||||
|
|
Loading…
Reference in a new issue