Skip to content

Commit 381ae47

Browse files
[mibs] b'VLAN_TABLE:' -> 'VLAN_TABLE' (#181)
- What I did Fix a missed bytes to string conversion. - How I did it Remove "b" - How to verify it Add a L3 VLAN interface and query SNMP RFC1213 MIB.
1 parent e54036c commit 381ae47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sonic_ax_impl/mibs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def vlan_entry_table(if_name):
156156
:param if_name: given interface to cast.
157157
:return: VLAN_TABLE key.
158158
"""
159-
return b'VLAN_TABLE:' + if_name
159+
return 'VLAN_TABLE:' + if_name
160160

161161

162162
def lag_entry_table(lag_name):

0 commit comments

Comments
 (0)