Skip to content

Commit

Permalink
Remove newline from final message
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Bakken committed Mar 26, 2014
1 parent 99e0d80 commit 66c5a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_connection_pools.erl
Expand Up @@ -23,7 +23,7 @@ run_cmd(Options, CmdOptions) ->
BucketWarning = proplists:get_value(bucket_warning, CmdOptions),
RequestMsg = "~B request poolboy workers in use",
BucketMsg = "~B bucket listing poolboy workers in use",
BothMsg = "~B request workers in use; ~B bucket workers in use~n",
BothMsg = "~B request workers in use; ~B bucket workers in use",
if
Requests >= RequestCritical, BucketLists >= BucketCritical -> {critical, BothMsg, [Requests, BucketLists]};
Requests >= RequestCritical -> {critical, RequestMsg, [Requests]};
Expand Down

0 comments on commit 66c5a99

Please sign in to comment.