Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Puma::Launcher: avoid a leading space character in RUBYOPT #1455

Merged
merged 1 commit into from Nov 16, 2017
Merged

Puma::Launcher: avoid a leading space character in RUBYOPT #1455

merged 1 commit into from Nov 16, 2017

Commits on Nov 13, 2017

  1. Puma::Launcher: avoid a leading space character in RUBYOPT

    The problem is this:
    
    ```
    2.4.2 :001 > [nil, 'foo'].join(' ')
     => " foo"
    ```
    
    Note the leading space character. By `lstrip`:ing the result of the join, we avoid this altogether.
    
    (This is a fix for the underlying problem that triggered jruby/jruby#4849.)
    perlun committed Nov 13, 2017
    Copy the full SHA
    51f4a11 View commit details
    Browse the repository at this point in the history