Vladimir Kotal
Vladimir Kotal
Could you describe in detail the changes done to the OpenGrok instance ?
Also, when does the above exception happen ? During webapp deployement/startup or some other time ?
As for the actual exception, the call in https://github.com/oracle/opengrok/blob/bf515fc3ff0462272f944c9049ca1177fb260586/opengrok-web/src/main/java/org/opengrok/web/api/v1/suggester/provider/service/impl/SuggesterServiceImpl.java#L396 triggers Tomcat class loader, most likely to load the `ExecutionTime.class` from `cron-utils-9.1.6.jar`. Inside the class loader, there is a list of...
What is meant in the comment is that setting the level to `WARNING` will make the logging somewhat quiet (as opposed to the lower log levels). The comment should be...
Actually, the verbose probably means the Indexer flag that got changed in cset 83adc92c
I think the -v option should just go away. I preserved it for compatibility with older versions originally. There should be just one way how to set logging levels.
Is there anything of interest (around the time the request for the file in question fails) in the webapp logs ?
> Hello @vladak > > Not a single word from tomcat log. Should I increase tomcat log level? > > Thanks > yep, that might be worthwhile.
One notable change between 1.7.17 and 1.7.18 is Python 3.7.3 -> 3.9.2. Looking at the OpenGrok content between these 2 revisions (`git log --pretty=oneline --stat 1.7.17^1..1.7.18`) there is nothing that...
While I cannot reproduce it (with 1.7.35) yet, I think the choice of [`threading.Event()`](https://docs.python.org/3/library/threading.html#threading.Event) for starting the reindex was not a good one. Someone on SO quotes the Python cookbook,...