Hi there, I am trying to figure out how to extend the timeout beyond 780 seconds for org.apache.hadoop.hbase.procedure2.store.TestProcedureStoreTracker testcases.
I already tried creating a global @Rule in TestProcedureStoreTracker.java class to no avail. mvn -X -Dtest=TestProcedureStoreTracker#testLoad test /==================/ @Rule public Timeout globalTimeout = Timeout.seconds(900); /==================/ This was in addition to increasing surefire.timeout settings in pom.xml to 9000. I was wondering if anyone can tell me where this 780 second timeout is set and how can I increase it to a bigger value? Thanks in advance.
