Skip to content

Commit 14c4c03

Browse files
committed
fix: add missing slash into a path constant
The missing slash led to the post-network systemd service not being looked up, which in turn led to the reboot loop on the node Signed-off-by: Alexander Maslennikov <[email protected]>
1 parent b416aa4 commit 14c4c03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/consts/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const (
155155

156156
SriovServiceBasePath = "/etc/systemd/system"
157157
SriovServicePath = SriovServiceBasePath + "/sriov-config.service"
158-
SriovPostNetworkServicePath = SriovServiceBasePath + "sriov-config-post-network.service"
158+
SriovPostNetworkServicePath = SriovServiceBasePath + "/sriov-config-post-network.service"
159159

160160
// Feature gates
161161
// ParallelNicConfigFeatureGate: allow to configure nics in parallel

0 commit comments

Comments
 (0)