summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver
Commit message (Collapse)AuthorAgeFilesLines
* [*] Remove log4j2 dependencies, already included through master-sync-sharedSimon Rettberg2024-07-241-12/+0Star
|
* [server] Change logging again...Steffen Ritter2024-07-126-51/+23Star
| | | | | | | We already write most of the interesting dozmod actions to the sat-db. So instead of miserably duplicating only some of them to the logging facility, just write everything to both backends. Journalctl is also easier to search and grep for admins.
* [server] Also log user on upload/downloadSteffen Ritter2024-07-111-2/+28
|
* [server] Log readable name on image upload to masterSteffen Ritter2024-07-111-4/+4
|
* [server] CoW: Fix race condition generating invalid hashesSimon Rettberg2024-05-291-2/+2
| | | | | It's not too f'n bright to use a shared buffer in a multi-threaded environment....
* [*] Switch to new CascadedThreadPoolSimon Rettberg2024-05-226-34/+86
|
* [server] CoW: Fix calculating copy speed, don't return delay=0Simon Rettberg2024-05-221-8/+11
| | | | | | | Returning a calculated delay of 0 tells the caller that we wrote the modified block, which isn't true, so in effect a corrupted final image is created where certain modified blocks are missing.
* [server] Remove upload state in JSON; handled by client nowSimon Rettberg2024-05-161-2/+0Star
|
* [server] Remove user session when creating cow sessionSimon Rettberg2024-05-151-1/+2
|
* [server] cow: Fix copying virtIdSimon Rettberg2024-05-151-1/+1
|
* [server] Improve logging, remove redundant messagesSimon Rettberg2024-05-144-24/+30
|
* [server] DbLecture: Properly handle superadmin in getXml()Simon Rettberg2024-05-141-5/+17
|
* [server] ADD FUSDDS STIFFSimon Rettberg2024-05-086-0/+866
|
* [server] Add support for CoW sessionsSimon Rettberg2024-05-088-40/+293
|
* [server] DbImage: Add log messagesSimon Rettberg2024-05-081-2/+6
|
* [server] Add startup script that tweaks -XmxSimon Rettberg2024-02-071-0/+16
|
* [server] Tweak thrift call retry logicSimon Rettberg2024-01-231-2/+10
|
* [server] "using old data" message is confusing, only show if >= 1dSimon Rettberg2024-01-221-2/+2
|
* [server] Fix deadlockSimon Rettberg2023-09-271-5/+5
|
* master<->sat transfer: Prefer SSLSimon Rettberg2023-09-262-19/+20
|
* [server] Force update of os, virt and org lists every 3 hoursSimon Rettberg2023-09-212-3/+11
|
* [server] Tweak thread namesSimon Rettberg2023-07-173-14/+15
| | | | Names can actually be 15 chars, not 11...
* Fix whitespaceSimon Rettberg2023-07-121-0/+1
|
* maven: Don't uses brainfucked open intervals for version rangesSimon Rettberg2023-06-301-7/+7
| | | | See https://michakutz.medium.com/d4ba66ac654
* [server] Use upload token as filename for ongoing uploadsSteffen Ritter2023-06-023-5/+20
|
* [server] Fix possible NPESimon Rettberg2023-06-021-2/+2
|
* [server] Assign proper names to threads and thread poolsSimon Rettberg2023-05-264-11/+12
|
* [server] log4j: Try to silence warnings from thrift libSimon Rettberg2023-05-231-0/+4
|
* [server] DB: Make .lastInsertId() actually workSimon Rettberg2023-05-221-1/+1
| | | | | It's unused currently so never mattered, but better be safe for the future. :-)
* [server] Restore Java 1.8 compat for nowSimon Rettberg2023-05-222-4/+12
| | | | | Since this is really the only place so far, refactor to support older Java. Let's move to 11+ after the next release.
* [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