Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assessment: Fix sporadically delayed score calculation #10289

Merged
merged 5 commits into from
Feb 12, 2025

Conversation

magaupp
Copy link
Contributor

@magaupp magaupp commented Feb 7, 2025

Checklist

General

Server

Motivation and Context

ParticipantScoreScheduleService tries to detect duplicate task submissions by identifying tasks by a hash built from its exercise id and its participant id. This approach, however, does not handle hash collisions.
The result is that sometimes tasks get canceled by other, different tasks and a required update of the ParticipantScore gets dropped.
These missed results get picked up by the @Scheduled cronjob that runs every minute.

Description

The tasks get identified by their exercise id and participant id without taking the hash. The Hashmap implementation internally uses the hash, but also compares the entire key to ensure the correct identity of the entry.

Fixes flaky tests in ParticipantScoreIntegrationTest.

Steps for Testing

Prerequisites:

  • 1 Student
  • 1 Instructor
  • 1 Exercise
  1. Login as student
  2. Look at the score chart of the course
  3. Create a submission to the exercise
  4. Login as instructor
  5. Assess the new submission
  6. Login as the previous student
  7. Verify that the score chart is updated correctly

Before / After assessment:
Screenshot 2025-02-08 at 00-02-37 Statistics Test Course Marcel Gaupp Screenshot 2025-02-08 at 00-04-46 Statistics Test Course Marcel Gaupp

Testserver States

You can manage test servers using Helios. Check environment statuses in the environment list. To deploy to a test server, go to the CI/CD page, find your PR or branch, and trigger the deployment.

Review Progress

Code Review

  • Code Review 1
  • Code Review 2

Manual Tests

  • Test 1
  • Test 2

Summary by CodeRabbit

Summary by CodeRabbit

  • Refactor
    • Updated the data structure for storing scheduled tasks to improve type safety and clarity in task management.
    • Enhanced comments to clarify the need for regular checks on participant scores due to potential network issues.

@github-actions github-actions bot added server Pull requests that update Java code. (Added Automatically!) assessment Pull requests that affect the corresponding module labels Feb 7, 2025
@helios-aet helios-aet bot temporarily deployed to artemis-test3.artemis.cit.tum.de February 7, 2025 22:54 Inactive
@magaupp magaupp marked this pull request as ready for review February 7, 2025 23:12
@magaupp magaupp requested a review from a team as a code owner February 7, 2025 23:12
Copy link

coderabbitai bot commented Feb 7, 2025

Walkthrough

The ParticipantScoreScheduleService class has been updated to use a custom ParticipantScoreId record as the key in the scheduledTasks map instead of an integer hash code. Changes were made in the scheduleTask and shutdown methods to handle the new key type. The overall logic remains intact while enhancing type safety and clarity in task management.

Changes

File(s) Change Summary
src/main/java/.../ParticipantScoreScheduleService.java Changed map key type from Integer to ParticipantScoreId in scheduledTasks and updated related methods.

Sequence Diagram(s)

Suggested labels

bugfix, programming

Suggested reviewers

  • b-fein
  • JohannesStoehr
  • dmytropolityka
  • N0W0RK
  • Hialus

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 PMD (7.8.0)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java

[ERROR] Error at ruleset.xml:58:5
56|
57|
58|
^^^^^ Unable to find referenced rule BooleanInstantiation; perhaps the rule name is misspelled?

59|
60|
[WARN] Warning at ruleset.xml:66:5
64|
65|
66|
^^^^^ Use Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitch instead of the deprecated Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt. PMD 8.0.0 will remove support for this deprecated Rule name usage.

67|
68|
[ERROR] Error at ruleset.xml:71:5
69|
70|
71|
^^^^^ Unable to find referenced rule DontImportJavaLang; perhaps the rule name is misspelled?

72|
73|
[ERROR] Error at ruleset.xml:75:5
73|
74|
75|
^^^^^ Unable to find referenced rule DuplicateImports; perhaps the rule name is misspelled?

76|
77|
[ERROR] Error at ruleset.xml:78:5
76|
77|
78|
^^^^^ Unable to find referenced rule EmptyFinallyBlock; perhaps the rule name is misspelled?

79|
80|
[ERROR] Error at ruleset.xml:79:5
77|
78|
79|
^^^^^ Unable to find referenced rule EmptyIfStmt; perhaps the rule name is misspelled?

80|
81|
[ERROR] Error at ruleset.xml:81:5
79|
80|
81|
^^^^^ Unable to find referenced rule EmptyInitializer; perhaps the rule name is misspelled?

82|
83|
[ERROR] Error at ruleset.xml:82:5
80|
81|
82|
^^^^^ Unable to find referenced rule EmptyStatementBlock; perhaps the rule name is misspelled?

83|
84|
[ERROR] Error at ruleset.xml:83:5
81|
82|
83|
^^^^^ Unable to find referenced rule EmptyStatementNotInLoop; perhaps the rule name is misspelled?

84|
85|
[ERROR] Error at ruleset.xml:84:5
82|
83|
84|
^^^^^ Unable to find referenced rule EmptySwitchStatements; perhaps the rule name is misspelled?

85|
86|
[ERROR] Error at ruleset.xml:85:5
83|
84|
85|
^^^^^ Unable to find referenced rule EmptySynchronizedBlock; perhaps the rule name is misspelled?

86|
87|
[ERROR] Error at ruleset.xml:86:5
84|
85|
86|
^^^^^ Unable to find referenced rule EmptyTryBlock; perhaps the rule name is misspelled?

87|
88|
[ERROR] Error at ruleset.xml:87:5
85|
86|
87|
^^^^^ Unable to find referenced rule EmptyWhileStmt; perhaps the rule name is misspelled?

88|
89|
[ERROR] Error at ruleset.xml:90:5
88|
89|
90|
^^^^^ Unable to find referenced rule ExcessiveClassLength; perhaps the rule name is misspelled?

91|
92|
[ERROR] Error at ruleset.xml:91:5
89|
90|
91|
^^^^^ Unable to find referenced rule ExcessiveMethodLength; perhaps the rule name is misspelled?

92|
93|
[ERROR] Error at ruleset.xml:106:5
104|
105|
106|
^^^^^ Unable to find referenced rule ImportFromSamePackage; perhaps the rule name is misspelled?

107|
108|
[ERROR] Error at ruleset.xml:119:5
117|
118|
119|
^^^^^ Unable to find referenced rule MissingBreakInSwitch; perhaps the rule name is misspelled?

120|
121|
[WARN] Warning at ruleset.xml:124:5
122|
123|
124|
^^^^^ Use Rule name category/java/errorprone.xml/NonCaseLabelInSwitch instead of the deprecated Rule name category/java/errorprone.xml/NonCaseLabelInSwitchStatement. PMD 8.0.0 will remove support for this deprecated Rule name usage.

125|
126|
[ERROR] Error at ruleset.xml:134:9
132|
133| // It's okay to use short variable names in DTOs, e.g. "id" or "name"
134| ./de/tum/in/www1/artemis/web/rest/dto/.
^^^^^^^^^^^^^^^^ Unexpected element 'exclude-pattern' in rule ShortVariable

135|
136|
[ERROR] Error at ruleset.xml:137:5
135|
136|
137|
^^^^^ Unable to find referenced rule SimplifyBooleanAssertion; perhaps the rule name is misspelled?

138|
139|
[WARN] Warning at ruleset.xml:184:5
182|
183|
184|
^^^^^ Use Rule name category/ecmascript/errorprone.xml/InaccurateNumericLiteral instead of the deprecated Rule name category/ecmascript/errorprone.xml/InnaccurateNumericLiteral. PMD 8.0.0 will remove support for this deprecated Rule name usage.

185|
186|
[ERROR] Cannot load ruleset category/vm/bestpractices.xml: Cannot resolve rule/ruleset reference 'category/vm/bestpractices.xml'. Make sure the resource is a valid file or URL and is on the CLASSPATH. Use --debug (or a fine log level) to see the current classpath.
[WARN] Progressbar rendering conflicts with reporting to STDOUT. No progressbar will be shown. Try running with argument -r to output the report to a file instead.

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (2)

224-235: Consider adding null checks for method parameters.

While the exerciseId parameter is annotated with @NotNull, the method implementation should still validate all parameters to ensure robustness.

 private void scheduleTask(Long exerciseId, Long participantId, Instant resultLastModified, Long resultIdToBeDeleted) {
+    if (exerciseId == null || participantId == null || resultLastModified == null) {
+        throw new IllegalArgumentException("exerciseId, participantId, and resultLastModified must not be null");
+    }
     final var participantScoreId = new ParticipantScoreId(exerciseId, participantId);

343-343: Consider using computeIfPresent for atomic removal.

When dealing with concurrent maps, using atomic operations can help prevent race conditions.

-            scheduledTasks.remove(new ParticipantScoreId(exerciseId, participantId));
+            scheduledTasks.computeIfPresent(new ParticipantScoreId(exerciseId, participantId), (key, value) -> null);
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 67a5a03 and 73aeb41.

📒 Files selected for processing (1)
  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (3 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`src/main/java/**/*.java`: naming:CamelCase; principles:{sin...

src/main/java/**/*.java: naming:CamelCase; principles:{single_responsibility,small_methods,no_duplication}; db:{perf_queries,datetime_not_timestamp}; rest:{stateless,singleton,delegate_logic,http_only,minimal_dtos}; dtos:{java_records,no_entities,min_data,single_resp}; di:constructor_injection; kiss:simple_code; file_handling:os_indep_paths; practices:{least_access,avoid_transactions,code_reuse,static_member_ref,prefer_primitives}; sql:{param_annotation,uppercase,avoid_subqueries};java:avoid_star_imports

  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Codacy Static Code Analysis
  • GitHub Check: server-tests-postgres
  • GitHub Check: server-tests-mysql
🔇 Additional comments (3)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (3)

72-72: LGTM! Good choice using ConcurrentHashMap with the new key type.

The change from using Integer to ParticipantScoreId as the map key improves type safety while maintaining thread safety through ConcurrentHashMap.


469-470: LGTM! Well-designed record class.

The ParticipantScoreId record is a perfect use case for Java records, providing:

  • Immutable composite key
  • Auto-generated equals/hashCode for map operations
  • Clear semantic meaning

1-471: Verify the impact of ParticipantScoreId changes on serialization.

Since this service is part of a distributed system (as indicated by the broker reference in comments), we should verify that the new ParticipantScoreId is properly handled in serialization/deserialization scenarios.

✅ Verification successful

🏁 Script executed:

#!/bin/bash
# Search for serialization-related configurations or implementations
rg -l "implements.*Serializable|@JsonSerialize|@JsonDeserialize" 

Length of output: 6169


ParticipantScoreId Serialization Impact Verified

After reviewing the repository, it appears that the ParticipantScoreId record is used solely as an internal key (in a ConcurrentHashMap for scheduling tasks) and is not involved in any serialization/deserialization scenarios (e.g., no JSON annotations or Serializable implementations). The searched serialization configurations are present in other parts of the codebase (mostly DTOs), and there’s no evidence that ParticipantScoreId is transmitted over the broker or included in any API messages. Therefore, the changes to ParticipantScoreId have no adverse impact on serialization.

coderabbitai[bot]
coderabbitai bot previously approved these changes Feb 7, 2025
simonbohnen
simonbohnen previously approved these changes Feb 8, 2025
Copy link

@simonbohnen simonbohnen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@magaupp magaupp added the small label Feb 8, 2025
@magaupp magaupp changed the title Assessment: Fix uncommon outdated score calculation Assessment: Fix missing score calculation Feb 8, 2025
az108
az108 previously approved these changes Feb 8, 2025
Copy link
Contributor

@az108 az108 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code 👍

@magaupp magaupp dismissed stale reviews from az108, simonbohnen, and coderabbitai[bot] via 342d40f February 9, 2025 14:33
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (1)

471-472: LGTM! Well-designed record type for composite key.

The ParticipantScoreId record is a good choice for the composite key:

  • Immutable by design (record type)
  • Clear semantic meaning
  • Built-in equals/hashCode implementation

Consider adding validation for non-null fields if the IDs are never expected to be null.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 73aeb41 and 342d40f.

📒 Files selected for processing (1)
  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (3 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`src/main/java/**/*.java`: naming:CamelCase; principles:{sin...

src/main/java/**/*.java: naming:CamelCase; principles:{single_responsibility,small_methods,no_duplication}; db:{perf_queries,datetime_not_timestamp}; rest:{stateless,singleton,delegate_logic,http_only,minimal_dtos}; dtos:{java_records,no_entities,min_data,single_resp}; di:constructor_injection; kiss:simple_code; file_handling:os_indep_paths; practices:{least_access,avoid_transactions,code_reuse,static_member_ref,prefer_primitives}; sql:{param_annotation,uppercase,avoid_subqueries};java:avoid_star_imports

  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java
⏰ Context from checks skipped due to timeout of 90000ms (8)
  • GitHub Check: Call Build Workflow / Build .war artifact
  • GitHub Check: Call Build Workflow / Build and Push Docker Image
  • GitHub Check: Codacy Static Code Analysis
  • GitHub Check: server-style
  • GitHub Check: client-style
  • GitHub Check: client-tests
  • GitHub Check: server-tests
  • GitHub Check: Analyse
🔇 Additional comments (3)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (3)

73-73: LGTM! Improved type safety with custom key type.

The change from Map<Integer, ScheduledFuture<?>> to Map<ParticipantScoreId, ScheduledFuture<?>> eliminates potential hash collisions by using a proper composite key type.


225-237: LGTM! Task scheduling logic correctly uses the new key type.

The implementation properly creates and uses the ParticipantScoreId for task management. The code maintains thread safety by using ConcurrentHashMap and proper synchronization when canceling and rescheduling tasks.


345-345: LGTM! Consistent cleanup in finally block.

The task cleanup in the finally block correctly uses the new ParticipantScoreId type, ensuring proper resource management even in case of exceptions.

coderabbitai[bot]
coderabbitai bot previously approved these changes Feb 9, 2025
@helios-aet helios-aet bot temporarily deployed to artemis-test4.artemis.cit.tum.de February 9, 2025 15:20 Inactive
SindiBuklaji
SindiBuklaji previously approved these changes Feb 9, 2025
Copy link

@SindiBuklaji SindiBuklaji left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS4 and it works as expected 👍

@helios-aet helios-aet bot temporarily deployed to artemis-test3.artemis.cit.tum.de February 9, 2025 17:40 Inactive
kevinfischer4
kevinfischer4 previously approved these changes Feb 9, 2025
Copy link

@kevinfischer4 kevinfischer4 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS3, chart gets updated correctly 👍

HanyangXu0508
HanyangXu0508 previously approved these changes Feb 9, 2025
Copy link

@HanyangXu0508 HanyangXu0508 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tested on Server 5 and worked as expected

Copy link
Contributor

@ole-ve ole-ve left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It makes sense to directly use the ParticipantScoreId IMO. However, does that change the behaviour?

AFAIK, when put-ing an Object to a map (or get/remove), Object#hashCode is used for that? What am I missing?

@magaupp
Copy link
Contributor Author

magaupp commented Feb 10, 2025

The Hash table internally uses hashCode() on the key to find a bucket for the key and equals() to disambiguate keys within the same bucket.

ole-ve
ole-ve previously approved these changes Feb 10, 2025
Copy link
Contributor

@ole-ve ole-ve left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for explaining the hashing mechanism, code approve

@magaupp magaupp changed the title Assessment: Fix missing score calculation Assessment: Fix sporadically delayed score calculation Feb 10, 2025
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (2)

473-474: LGTM! Well-designed record type.

The ParticipantScoreId record is a good choice for representing the composite key. It's immutable and provides automatic implementations of equals(), hashCode(), and toString().

Consider adding validation to ensure neither field is null:

-public record ParticipantScoreId(Long exerciseId, Long participantId) {
+public record ParticipantScoreId(@NotNull Long exerciseId, @NotNull Long participantId) {

9-10: Consider using more specific imports.

The code imports both Arrays and Map from java.util. For better maintainability and clarity, consider using specific imports for collection types.

-import java.util.Arrays;
-import java.util.Map;
+import java.util.Arrays;
+import java.util.concurrent.ConcurrentMap;
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 342d40f and 9b621e5.

📒 Files selected for processing (1)
  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (5 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`src/main/java/**/*.java`: naming:CamelCase; principles:{sin...

src/main/java/**/*.java: naming:CamelCase; principles:{single_responsibility,small_methods,no_duplication}; db:{perf_queries,datetime_not_timestamp}; rest:{stateless,singleton,delegate_logic,http_only,minimal_dtos}; dtos:{java_records,no_entities,min_data,single_resp}; di:constructor_injection; kiss:simple_code; file_handling:os_indep_paths; practices:{least_access,avoid_transactions,code_reuse,static_member_ref,prefer_primitives}; sql:{param_annotation,uppercase,avoid_subqueries};java:avoid_star_imports

  • src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java
🔇 Additional comments (3)
src/main/java/de/tum/cit/aet/artemis/assessment/service/ParticipantScoreScheduleService.java (3)

58-59: LGTM! Documentation improvements.

The added comments provide valuable context about potential network outages and the role of the cron job as a fallback mechanism.


74-74: LGTM! Type safety improvement.

Replacing Integer with ParticipantScoreId as the map key type enhances type safety and makes the code more maintainable by preventing hash collisions.


228-229: LGTM! Task scheduling logic improvements.

The implementation correctly uses the new ParticipantScoreId record for task identification, which resolves the issue of incorrect task cancellations due to hash collisions.

Also applies to: 233-233, 238-238, 347-347

Copy link
Contributor

@ole-ve ole-ve left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

re-approve after adding docu

@helios-aet helios-aet bot temporarily deployed to artemis-test4.artemis.cit.tum.de February 11, 2025 13:28 Inactive
Copy link

@HawKhiem HawKhiem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS4. Works as described

Copy link

@vinceclifford vinceclifford left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS4, works as expected.

@krusche krusche added this to the 7.10.1 milestone Feb 12, 2025
@krusche krusche merged commit 70396f7 into develop Feb 12, 2025
32 of 35 checks passed
@krusche krusche deleted the bugfix/assessment/fix-schedule-task-key branch February 12, 2025 20:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
assessment Pull requests that affect the corresponding module ready to merge server Pull requests that update Java code. (Added Automatically!) small
Projects
Status: Merged
Status: Done
Development

Successfully merging this pull request may close these issues.

10 participants