We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 577cf01 commit bacf4d6Copy full SHA for bacf4d6
lib/spring/application.rb
@@ -129,7 +129,12 @@ def preload
129
end
130
131
def eager_preload
132
- with_pty { preload }
+ with_pty do
133
+ # we can't see stderr and there could be issues when it's overflown
134
+ # see https://github.com/rails/spring/issues/396
135
+ STDERR.reopen("/dev/null")
136
+ preload
137
+ end
138
139
140
def run
0 commit comments