Skip to content

Commit ca7673d

Browse files
committed
chore: fix lint unnecessary conversion
1 parent 1276de7 commit ca7673d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/worker/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func (wg *WorkerGenerator) GenerateWorkerPod(
5757
Value: gpu.Status.UUID,
5858
}, corev1.EnvVar{
5959
Name: constants.WorkerPortEnv,
60-
Value: strconv.Itoa(int(port)),
60+
Value: strconv.Itoa(port),
6161
})
6262

6363
return &corev1.Pod{

0 commit comments

Comments
 (0)