Skip to main content
Moderne OnlyThis recipe is proprietary to Moderne and runs on the Moderne platform or CLI — it isn’t part of the open-source catalog. Available with a Moderne subscription.Contact Sales

Prefer errors.Is for net.ErrClosed comparison

Recipe IDorg.openrewrite.golang.codequality.PreferErrorsIsNetClosed
Artifactgithub.com/moderneinc/recipes-go

Replace err == net.ErrClosed with errors.Is(err, net.ErrClosed) and err != net.ErrClosed with !errors.Is(err, net.ErrClosed) for correct wrapped error handling.

Single recipeOpenRewriteModerne Proprietary License
Try in PlatformTry this recipe in the Moderne platform. Not a user yet? You’ll get a no-setup demo environment, with nothing to install or configure.

Usage

Run this recipe

In order to run Go recipes, you will need to use the Moderne CLI. For Go specific configuration instructions, please see our configuring Go guide.

Once the CLI is installed, you can run the recipe via:

Run the recipe
mod run . --recipe PreferErrorsIsNetClosed

If the recipe is not available locally, then you can install it using:

Installing without a pinned version lets mod config recipes upgrade pull in later versions without editing this command; a pinned version stays where you put it.

Install the recipe module
mod config recipes go install github.com/moderneinc/recipes-go