issues Search Results · language:Dune language:JavaScript language:Java language:HTML language:Java language:JavaScript
Filter by
39.9M results
Context
With all the coupling issues in our monolith, should we consider breaking this into microservices?
Arguments For
- TaskService is too coupled to everything
- Scaling issues with the monolith ...
Description
Found several pieces of dead code:
- TaskService.getOldDashboardStats() - deprecated, referenced by decommissioned admin panel
- TaskService.migrateLegacyIds() - was for JIRA migration ...
Description
WebConfig.java has CORS configured to allow ALL origins (*), ALL methods, and ALL headers. This was a temporary fix that
was never addressed.
// FIXME: This is too permissive
registry.addMapping( ...
Description
No static code analysis tools are configured. Bugs, style violations, and potential issues are only caught during code
review (if at all).
Requirements
- Add SpotBugs Maven plugin for ...
Description
The pom.xml includes mysql-connector-java (8.0.28) but the application uses H2 in-memory database. MySQL is not
configured or used.
!-- TODO: someone added mysql but we never use it in prod ...
Description
The codebase mixes naming conventions inconsistently:
| Convention | Examples |
| --- | --- |
| camelCase | reporterId, projectCode, createdDate |
| snake_case | assignee_id, due_date, created_at, ...
Description
DatabaseHelper.java uses a lazy singleton pattern without synchronization:
private static Connection connection = null;
public static Connection getConnection() {
if (connection == null) ...
Description
There is no code coverage reporting configured. We have no visibility into which code is tested and which is not.
Requirements
- Add JaCoCo Maven plugin
- Generate coverage reports on ...
Description
Our test suite has multiple problems:
- 7 tests are @Disabled because they were flaky or TODO
- Several tests have no assertions (inflate coverage numbers)
- No @BeforeEach cleanup ...

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.