Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


--------------------------------------------------------------------------------
Fix
--------------------------------------------------------------------------------

* iosxr
* Modified ShowFrequencySynchronizationInterfaces:
* Changed wait_to_restore_time from schema to Optional.
* Changed status from schema to Optional.



Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@


--------------------------------------------------------------------------------
Fix
--------------------------------------------------------------------------------

* iosxr
* Modified ShowPtpPlatformServo:
* Updated regex pattern p13, p14 to accommodate various time formats (incl. nsecs).

* Modified ShowPtpForeignMastersInterface:
* Changed announce_messages from Schema to Optional.
* Updated regex pattern p2 to accommodate also Multicast (for G.8275.2).
* Added a logic to get only the first 'Clock ID' and prevent an overwrite by the parent 'Clock ID'.

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ShowFrequencySynchronizationInterfacesSchema(MetaParser):
'interface': str,
'interface_status': str,
Optional('selection'): str,
'wait_to_restore_time': int,
Optional('wait_to_restore_time'): int,
'ssm': {
'status': str,
Optional('peer_time'): str,
Expand All @@ -49,7 +49,7 @@ class ShowFrequencySynchronizationInterfacesSchema(MetaParser):
}
},
'input': {
'status': str,
Optional('status'): str,
Optional('selection'): str,
Optional('restore'): str,
Optional('last_received_ql'): str,
Expand Down
Loading