Simplify complex ternary expression
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Server.pm
index df61d9d..2de60b9 100644 (file)
@@ -163,7 +163,7 @@ has follow_symlinks => (
 
 sub _plack_engine_name {
     my $self = shift;
-    return $self->fork ? 'Starman' : $self->keepalive ? 'Starman' : 'Standalone';
+    return $self->fork || $self->keepalive ? 'Starman' : 'Standalone';
 }
 
 sub _restarter_args {