Skip to content

Commit 4d46ded

Browse files
...
1 parent eab3221 commit 4d46ded

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/features/detection.jl

+3-4
Original file line numberDiff line numberDiff line change
@@ -739,12 +739,11 @@ function identifyNode()
739739
node_features["node_vcpus_count"] = "unset"
740740

741741
for p in subtypes(CloudProvider)
742-
print(string(p) * "?")
742+
print(stderr, string(p) * "?")
743743
ok = getNodeFeatures(p, node_features)
744-
if (isnothing(ok)) print("No") else print("Yes") end; print("...")
744+
if (isnothing(ok)) print(stderr, "No") else print(stderr, "Yes") end; print(stderr, ",")
745745
end
746-
747-
println(stderr, "ok")
746+
print(stderr, "... ok")
748747
return node_features
749748
end
750749

0 commit comments

Comments
 (0)