---
title: "suspicious-sleep"
description: "Detect suspiciously small bare time.Sleep literals."
image: "https://strider.gempir.com/og.png"
---

> Documentation Index
> Fetch the complete documentation index at: https://strider.gempir.com/llms.txt
> Use this file to discover all available pages before exploring further.

# suspicious-sleep

**Default severity:** `warning`

Reports bare integer literals from 1 through 120 because `time.Sleep` treats
them as nanoseconds.

## Bad

```go
time.Sleep(5)
```

## Good

```go
time.Sleep(5 * time.Second)
```

Source: https://strider.gempir.com/analyzers/suspicious-sleep/index.mdx
