Skip to content

Commit 1ba0a51

Browse files
committed
fix: failed to parse uuid in nvidia detection
Signed-off-by: thxCode <[email protected]>
1 parent 4d61630 commit 1ba0a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gpustack_runtime/detector/nvidia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def detect(self) -> Devices | None: # noqa: PLR0915
209209
dev_fabric = None
210210
if dev_fabric:
211211
dev_appendix["fabric_cluster_uuid"] = stringify_uuid(
212-
dev_fabric.clusterUuid,
212+
bytes(dev_fabric.clusterUuid),
213213
)
214214
dev_appendix["fabric_clique_id"] = dev_fabric.cliqueId
215215

0 commit comments

Comments
 (0)