aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/core/StandaloneMain.java
Commit message (Collapse)AuthorAgeFilesLines
* Turn on autoscaling in perfJon Bratseth2022-08-251-2/+0
|
* Set up logging in ApplicationLoader again.gjoranv2022-05-101-1/+0
| | | | | - If done in StandaloneMain, logging will not work in integration tests (using TestDriver) or test frameworks (e.g. application).
* Set up vespalog in StandaloneMain static initializergjoranv2022-05-101-0/+2
| | | | - Remove unused InitializeLog
* Avoid using stdout for debug logging.Henning Baldersheim2022-04-201-8/+3
|
* Update 2017 copyright notices.gjoranv2021-10-071-1/+1
|
* setup signal catching before loading bundlesArne Juul2019-10-011-1/+1
| | | | | | | | | | * We have seen many core dumps happening during class initialization (in JNI code) - this happens when the container gets a SIGTERM while initialization is still happening; the normal shutdown that is triggered in this case will unload shared libraries while they are still in use. To counteract this trap SIGTERM early, but don't process it until bundle loading is complete. The downside is that early shutdown will be delayed, in some cases for quite a long time.
* Terminate standalone container cleanly on SIGINT/control-CHåkon Hallingstad2019-01-271-4/+4
|
* remove unnecessary loggingHåkon Hallingstad2017-12-231-1/+0
|
* Move initial log to right after Vespa logging has been initializedHåkon Hallingstad2017-12-231-1/+2
|
* Revert "Revert "Log at JDisc process start and stop""Håkon Hallingstad2017-12-231-1/+4
|
* Revert "Log at JDisc process start and stop"Arne H Juul2017-12-231-4/+1
|
* Log at JDisc process start and stopHåkon Hallingstad2017-12-221-1/+4
|
* Error should also exit JDisc containerHåkon Hallingstad2017-12-081-1/+1
|
* Print exception since logging may not have been setupHåkon Hallingstad2017-11-141-0/+2
|
* Log exception from StandaloneMain as SEVERE.gjoranv2017-08-241-1/+1
|
* Update copyright headersJon Bratseth2017-06-141-1/+1
|
* Revert "Update copyright headers"Jon Bratseth2017-06-141-1/+1
|
* Update copyright headersJon Bratseth2017-06-141-1/+1
|
* Revert "Copyright header"Jon Bratseth2017-06-131-1/+1
|
* Copyright headerJon Bratseth2017-06-131-1/+1
|
* avoid sending info messages to stderrArne Juul2016-06-221-10/+11
| | | | | | | | * logging here will happen before we get around to setting up the logging system like we really want. Instead, just print some useful information to stdout which is clearly marked as debug output.
* use CatchSigTerm from yoleanArne Juul2016-06-211-1/+1
|
* add main() for running without jsvc.Arne Juul2016-06-161-0/+71
* add StandaloneMain class * move common code to new Main class