Skip to content

Commit

Permalink
Add warning about daemonize if used
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle committed Oct 12, 2023
1 parent 80b78a1 commit 64c73f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/gemstash/cli/start.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ class Start < Gemstash::CLI::Base
def run
prepare
@cli.say("Starting gemstash!", :green)
case @cli.options[:daemonize]
when false then warn "The --no-daemonize option was removed and has no effect."
when true then warn "The --daemonize option was removed and has no effect."
end
Puma::CLI.new(args, Gemstash::Logging::StreamLogger.puma_events).run
end

Expand Down

0 comments on commit 64c73f3

Please sign in to comment.