superfly / flyctl

Printf with dynamic first argument and no further arguments SCC-SA1006
Bug risk
Major
1 occurrence in this check
printf-style function with dynamic format string and no further arguments should use print-style function instead
147
148		// Initial cluster size may not be greater than 1 with fork-from
149		if pgConfig.InitialClusterSize > 1 {
150			fmt.Fprintf(io.Out, colorize.Yellow("Warning: --initial-cluster-size is ignored when specifying --fork-from\n"))151			pgConfig.InitialClusterSize = 1
152		}
153