Skip to content

Commit

Permalink
update changelog, run sort and black
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed Mar 3, 2024
1 parent 6aeab5d commit 1971670
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [1.6.4] - 2024-03-05

### Fixed
- Reduce the time taken for the call node.get_ssh_command() (Issue [#280](https://github.com/fabric-testbed/fabrictestbed-extensions/issues/280))
Expand Down
12 changes: 6 additions & 6 deletions fabrictestbed_extensions/editors/geo_topology_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1460,9 +1460,9 @@ def load_node(self, node_name):
self.current_node = node

self.dashboards["node_dashboard"]["node_name_widget"].value = node_name
self.dashboards["node_dashboard"][
"site_name_widget"
].value = node.get_property(pname="site")
self.dashboards["node_dashboard"]["site_name_widget"].value = (
node.get_property(pname="site")
)
self.dashboards["node_dashboard"]["core_slider"].value = int(
self.get_capacity_value(node, "core")
)
Expand All @@ -1475,9 +1475,9 @@ def load_node(self, node_name):
self.dashboards["node_dashboard"]["image_widget"].value = node.get_property(
pname="image_ref"
)
self.dashboards["node_dashboard"][
"image_type_widget"
].value = node.get_property(pname="image_type")
self.dashboards["node_dashboard"]["image_type_widget"].value = (
node.get_property(pname="image_type")
)

# TODO: LOAD Components

Expand Down
6 changes: 3 additions & 3 deletions fabrictestbed_extensions/fablib/slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -1200,9 +1200,9 @@ def get_notices(self) -> Dict[str, str]:
notices[node.get_reservation_id()] = node.get_error_message()

for network_service in self.get_network_services():
notices[
network_service.get_reservation_id()
] = network_service.get_error_message()
notices[network_service.get_reservation_id()] = (
network_service.get_error_message()
)

for component in self.get_components():
notices[component.get_reservation_id()] = component.get_error_message()
Expand Down

0 comments on commit 1971670

Please sign in to comment.