diff options
author | Vratko Polak <vrpolak@cisco.com> | 2023-07-14 17:01:34 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2023-07-14 17:01:34 +0200 |
commit | c461e9407dc7d10a27780e0140088ae0b1adf6e8 (patch) | |
tree | 6372aa0ac8a3c21a73e8a204bd6a342421e66de7 /resources/libraries/python/SRv6.py | |
parent | c1c75eaaba3d25309315ac27c8aa11b4d7834151 (diff) |
feat(crc): bump messages for cycle after 2306
The supported VPP code is 380c62d7040bf285d449f1d05692141c40089470
which is the latest commit before stable/2306 diverged from master.
+ Separate messages into blocks with paths to .api sources.
+ Prepare memif for use_dma (currently always false).
+ Use srv6 test teardown action in srv6 device tests.
- Do not use sr_policy_add_v2 from 37258 yet.
- Leave a TODO to do it eventually, for now inputs are too different.
- Do not use index based policer calls from 37873.
- The policer_add_del is not deprecated yet and inputs are different.
Change-Id: I350138f09542ec12ce4bec140203175940ccf9d4
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/SRv6.py')
-rw-r--r-- | resources/libraries/python/SRv6.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/resources/libraries/python/SRv6.py b/resources/libraries/python/SRv6.py index eca22a2b17..d16c3529c3 100644 --- a/resources/libraries/python/SRv6.py +++ b/resources/libraries/python/SRv6.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -222,6 +222,8 @@ class SRv6: :type sid_list: list :type mode: str """ + # TODO: Convert to use sr_policy_add_v2. + # The conversion is not straightforward so it was not done when bumping. cmd = u"sr_policy_add" args = dict( bsid_addr=IPv6Address(bsid).packed, @@ -243,7 +245,7 @@ class SRv6: :param node: Given node to show SRv6 policies on. :type node: dict """ - cmd = u"sr_policies_dump" + cmd = u"sr_policies_v2_dump" PapiSocketExecutor.dump_and_log(node, (cmd,)) @staticmethod |