Re: help with this error, please

2020-01-24 Thread Vasu Nori
Just to close this issue out, I found out what the problem is. A class constructor was failing at runtime. when constructor fails, it *somehow* becomes NoClassDef exception. What confused me what that the error-causing line wasn't identified correctly in the stacktrace. I stripped out segments I a

Re: help with this error, please

2020-01-23 Thread Vasu Nori
Luke, Toko Thanks for the responses. I will upload a change that is the minimum needed to reproduce this error. shortly. thanks, On Wed, Jan 22, 2020 at 7:48 PM Tomo Suzuki wrote: > Hi Vasu, > (Ignore my message if Luke's advice resolves the issue already) > > Would you add the entire error me

Re: help with this error, please

2020-01-22 Thread Tomo Suzuki
Hi Vasu, (Ignore my message if Luke's advice resolves the issue already) Would you add the entire error message, if any? A NoClassDefFoundError is usually caused by a ClassNotFoundError saying a class is not found. I don't see the missing class name in your stacktrace. I'll need (1) the entire err

Re: help with this error, please

2020-01-22 Thread Luke Cwik
boolean properties only allow for getYYY, isYYY and setYYY, you can't use "should". I think you should have gotten a better error message though so it's likely something else is not working for you. How are you trying to run the test? All pipeline options use a global namespace so UseGrpc will "re

Re: help with this error, please

2020-01-22 Thread Vasu Nori
sorry I didn't realize I posted a screenshot link that wasn't visible outside google.com. here is the code I was trying to add to GcsOptions.java 1. @Description("Whether to use gRPC or not, as transport mechanism.") 2. @Default.Boolean(false) 3. Boolean shouldUseGrpc(); 4. 5

help with this error, please

2020-01-22 Thread Vasu Nori
Hello I am trying to add a new property to this file like this but this results in s