Skip to content

Commit

Permalink
We don't need to sync stats as we don't use it.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclarke-csco committed Oct 30, 2023
1 parent 098229e commit c6efa31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/v2/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_cml_nodes(self):
self.setup_func("get", m, "labs/{}/nodes/n1/layer3_addresses".format(self.get_test_id()), json=data["n1"])
virl = self.get_virl()
runner = CliRunner()
result = runner.invoke(virl, ["nodes"])
result = runner.invoke(virl, ["nodes"], catch_exceptions=False)
self.assertEqual(0, result.exit_code)

def test_cml_nodes_no_lab(self):
Expand Down
2 changes: 1 addition & 1 deletion virl/cli/views/nodes/node_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def node_list_table(nodes, computes):
# Skip a full operational sync per node.
node.lab.auto_sync = True
for sync in (
"sync_statistics_if_outdated",
# "sync_statistics_if_outdated",
"sync_states_if_outdated",
"sync_l3_addresses_if_outdated",
"sync_topology_if_outdated",
Expand Down

0 comments on commit c6efa31

Please sign in to comment.