summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver
Commit message (Collapse)AuthorAgeFilesLines
* [server] Add one second timeout to cache updatesSimon Rettberg2023-05-224-21/+67
| | | | | | | | | | Since the caches are also accessed in some more timing-sensitive contexts, e.g. when a client requests launch data for a lecture, we should make sure a cache update, in case the data is stale, doesn't take too long. If the update doesn't complete within a second, we return the old, stale data. The actual cache update will still keep running in the background though and if successful, update the cache.
* [server] Fix javadocSteffen Ritter2023-05-121-1/+1
|
* [server] WebServer: Proper log level for uncaught exceptionSimon Rettberg2023-05-101-1/+1
|
* [server] DB: Fix possible handout of dead connections with latest mariadb ↵Simon Rettberg2023-05-083-2/+67
| | | | | | connector Also more error handling.
* Update git url to httpsSimon Rettberg2023-04-261-1/+1
|
* [server] Add missing pagination for lecture listSimon Rettberg2023-03-311-1/+3
| | | | | This bug lead to a nice infinite loop on the client as soon as we hit the pagination thresold.
* [server] Add JSON/HTTP listener for thriftSimon Rettberg2023-02-245-1143/+132Star
|
* [server] Java 11Simon Rettberg2023-02-241-3/+3
|
* [server] Make maintenance tasks a bit less spammySimon Rettberg2022-11-093-6/+5Star
|
* [server] Suppress log messages by mariadb connectorSimon Rettberg2022-11-091-0/+1
|
* [server] Remove unused throws annotationSimon Rettberg2022-11-071-1/+1
|
* [server] Ignore VM size limit for super userSimon Rettberg2022-11-071-2/+6
|
* [server] Add start/finished log output to recurring maintenance tasksSimon Rettberg2022-11-075-3/+17
|
* [server] Try to catch weird bug when deleting old imagesSimon Rettberg2022-11-073-3/+3
|
* [server] Remove apache commons dependenciesSimon Rettberg2022-11-072-6/+5Star
|
* [server] Honor vmSizeLimit and reject uploads that exceed itSimon Rettberg2022-11-032-0/+6
|
* [server] Use mariadb class nameSimon Rettberg2022-10-181-2/+2
|
* [server] Switch from mysql to mariadb connectorSimon Rettberg2022-10-181-3/+3
| | | | | | | This conventiently also fixes the version range crap where for unknown reasons, maven wants to resolve [8.0,8.99] to the currently non-existent version 8.0.31 and then fails building the project.
* [server] Switch mltk repo URL to HTTPSSimon Rettberg2022-10-181-1/+1
|
* [server] Send another EHLO after STARTTLS, as we SHOULDSimon Rettberg2022-08-091-2/+9
| | | | https://www.rfc-editor.org/rfc/rfc2487
* [server] Log role on loginSimon Rettberg2022-05-121-1/+1
|
* [server] Fix query call (not an update)Simon Rettberg2022-04-211-3/+3
|
* [server] Add MultiLib attribute to manifestSimon Rettberg2022-03-031-0/+1
| | | | ...so log4j2 loads proper StackLocator on Java9+
* [SERVER] enable DockerFeatureralph isenmann2022-02-233-8/+51
| | | | - checks also if required value in db exists
* [SERVER] Downgrade Maven assembly plugin for Java 8 compatibilityManuel Bentele2022-01-281-1/+1
|
* [CLIENT,SERVER] move handling of tar into TarArchiveReader and ↵ralph isenmann2022-01-272-32/+8Star
| | | | TarArchiveWriter in master-sync-shared
* [SERVER] Update Mysql Java driver class pathManuel Bentele2021-12-221-1/+1
|
* [SERVER] Update Java runtime version in Docker containerManuel Bentele2021-12-221-1/+1
|
* [SERVER] Update log4j because of the CVE-2021-45105 security flawManuel Bentele2021-12-201-2/+2
|
* [SERVER] Update version of build dependenciesManuel Bentele2021-12-171-7/+7
|
* [SERVER] Update version of Maven build pluginsManuel Bentele2021-12-171-4/+5
|
* [SERVER] Update generated Thrift API to version 0.15.0Manuel Bentele2021-12-171-3/+3
|
* [SERVER] Update log4j because of the CVE-2021-45046 security flawManuel Bentele2021-12-171-2/+2
|
* [SERVER] Update log4j because of the CVE-2021-44228 security flawManuel Bentele2021-12-1551-107/+180
|
* [CLIENT] Update log4j because of the CVE-2021-44228 security flawManuel Bentele2021-12-151-0/+0
|
* Merge branch 'feature/docker-data-container' of ↵feature/docker-data-containerralph isenmann2021-11-101-0/+6
|\ | | | | | | git.openslx.org:openslx-ng/tutor-module into feature/docker-data-container
| * [server] add endpoint to dmsd webserver for image metadataralph isenmann2021-09-072-22/+61
| | | | | | | | new endpoint /image/container/<baseimageid>/metadata to request specific information about an existing image (virtId==docker and containerImageType==data)
* | [server] update webserver and dbimage; refactoringralph isenmann2021-11-102-30/+22Star
| |
* | [server] add endpoint to dmsd webserver for image metadataralph isenmann2021-10-282-22/+61
|/ | | | new endpoint /image/container/<baseimageid>/metadata to request specific information about an existing image (virtId==docker and containerImageType==data)
* [*] Add "modern" way to set target Java versionSimon Rettberg2021-08-121-1/+1
|
* [*] Adapt to de-genricization of VirtualizationConfigurationSimon Rettberg2021-08-121-1/+1
|
* [server] Refactor printing of app information from MANIFEST.MFManuel Bentele2021-07-022-12/+14
|
* [client] Make launchData a byte array; this is opaque dataSimon Rettberg2021-07-021-3/+3
| | | | | | | Converting it to string and back can break binary data. Previously it was assumed to be UTF-8, but we can't actually know that anyways, so unless we have a robust conversion policy for text-based configurations, better not touch it for now.
* [server] Make webserver listen on every address in Docker setupManuel Bentele2021-06-286-1/+26
|
* [server] Add URL path /bwlp/container/clusterimages to retrieve information ↵ralph isenmann2021-06-242-18/+85
| | | | about registered container images
* [client,server] Add configuration overwrites to use master-server Docker ↵Manuel Bentele2021-06-022-14/+49
| | | | container
* [server] Package build version and timestamp into MANIFEST.MFManuel Bentele2021-06-011-1/+30
| | | | Fixes: #3857
* [server] Refactor container network to match common Docker networkManuel Bentele2021-06-014-34/+55
|
* [server] Update test dataset for dozmod-serverManuel Bentele2021-05-311-7/+0Star
|
* [client,server] Fix spelling mistakes in the documentationdmsd-v3.10Manuel Bentele2021-05-251-4/+4
|