superfly / flyctl

Unused parameter in function RVV-B0012
Bug risk
Minor
2 occurrences in this check
parameter 'appName' seems to be unused, consider removing or renaming it as _
161	return nil
162}
163
164func confirmVolumeCreate(ctx context.Context, appName string) (bool, error) {165	volumeName := flag.FirstArg(ctx)
166
167	// If the Yes flag has been supplied we skip the warning entirely, so no
parameter 'ctx' seems to be unused, consider removing or renaming it as _
591	}
592}
593
594func resolveForkFromVolume(ctx context.Context, machines []*fly.Machine) (string, error) {595	if len(machines) == 0 {
596		return "", fmt.Errorf("No machines associated with fork-from target. See `fly pg create --help` for more information")
597	}