This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no hardware access-list update atomic ---> this brought TCAM util down | |
re-apply access-group to vlan interface | |
hardware access-list update atomic ---> this brought TCAM util back to where it was before |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class InsertTimeCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
from time import asctime | |
self.view.insert(edit, self.view.sel()[0].a, asctime()) |
NewerOlder