Skip to content

Commit

Permalink
NIT
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Jul 4, 2022
1 parent 5d10e31 commit 9a06c01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/src/main/scala/snailgun/Cli.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ object Cli extends CaseApp[CliOptions] {
.orElse(Defaults.env.get("NAILGUN_PORT").map(_.toInt))
.getOrElse(Defaults.Port)
val client = TcpClient(hostServer, portServer)
val noCancel = new AtomicBoolean(false)
val logger = new SnailgunLogger("log", out, isVerbose = options.verbose)
val code =
try
Expand All @@ -44,7 +43,7 @@ object Cli extends CaseApp[CliOptions] {
Defaults.env,
streams,
logger,
noCancel,
new AtomicBoolean(false),
true
)
catch {
Expand Down

0 comments on commit 9a06c01

Please sign in to comment.