We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
Similar errors in:
Gems involved:
I expect a TypeError: no implicit conversion of nil into String to be raised due to a bug in aws-sdk.
TypeError: no implicit conversion of nil into String
I am seeing a StackOverflowError exception when an RSpec integration test receives a TypeError: no implicit conversion of nil into String.
Attempting to reproduce that error in isolation fails (the correct exception is raised)
Details here: aws/aws-sdk-ruby#1232 (comment)
When run with JRUBY_OPTS=-X-C, the following (truncated) stack trace occurs:
JRUBY_OPTS=-X-C
Failure/Error: Unable to find org.jruby.ir.interpreter.InterpreterEngine.processBookKeepingOp(InterpreterEngine.java to read failed line Java::JavaLang::StackOverflowError: # org.jruby.ir.interpreter.InterpreterEngine.processBookKeepingOp(InterpreterEngine.java:368) # org.jruby.ir.interpreter.InterpreterEngine.interpret(InterpreterEngine.java:196) # org.jruby.ir.interpreter.Interpreter.INTERPRET_BLOCK(Interpreter.java:132) # org.jruby.runtime.InterpretedIRBlockBody.callDirect(InterpretedIRBlockBody.java:102) # org.jruby.runtime.IRBlockBody.call(IRBlockBody.java:64) # org.jruby.runtime.Block.call(Block.java:126) # org.jruby.RubyProc.call(RubyProc.java:342) # org.jruby.internal.runtime.methods.ProcMethod.call(ProcMethod.java:63) # org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:193) # org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:189) # org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:129) # org.jruby.ir.interpreter.InterpreterEngine.processCall(InterpreterEngine.java:339) # org.jruby.ir.interpreter.InterpreterEngine.interpret(InterpreterEngine.java:159) # org.jruby.ir.interpreter.InterpreterEngine.interpret(InterpreterEngine.java:84) # org.jruby.internal.runtime.methods.InterpretedIRMethod.INTERPRET_METHOD(InterpretedIRMethod.java:157) # org.jruby.internal.runtime.methods.InterpretedIRMethod.call(InterpretedIRMethod.java:148) # org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:197) # org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:161) # org.jruby.ir.interpreter.InterpreterEngine.processCall(InterpreterEngine.java:314) # org.jruby.ir.interpreter.InterpreterEngine.interpret(InterpreterEngine.java:159) # org.jruby.ir.interpreter.InterpreterEngine.interpret(InterpreterEngine.java:84) # org.jruby.internal.runtime.methods.InterpretedIRMethod.INTERPRET_METHOD(InterpretedIRMethod.java:157) # org.jruby.internal.runtime.methods.InterpretedIRMethod.call(InterpretedIRMethod.java:148) [ Repeat another 143 times]
I will try to pare down the example to give a simple reproduction case. Unfortunately it’s in a full integration test, so there’s a lot going on.
The text was updated successfully, but these errors were encountered:
This might be related: #4117
Sorry, something went wrong.
This is quite old and likely was fixed by my changes in #4117 (that is for pointing that out @nightscape). Closing as dupe.
No branches or pull requests
Environment
Similar errors in:
Gems involved:
Expected Behavior
I expect a
TypeError: no implicit conversion of nil into String
to be raised due to a bug in aws-sdk.Actual Behavior
I am seeing a StackOverflowError exception when an RSpec integration test receives a
TypeError: no implicit conversion of nil into String
.Attempting to reproduce that error in isolation fails (the correct exception is raised)
Details here: aws/aws-sdk-ruby#1232 (comment)
When run with
JRUBY_OPTS=-X-C
, the following (truncated) stack trace occurs:I will try to pare down the example to give a simple reproduction case. Unfortunately it’s in a full integration test, so there’s a lot going on.
The text was updated successfully, but these errors were encountered: