issues Search Results · language:Dune language:JavaScript language:Python language:Java language:JavaScript language:Python
Filter by
55.4M results
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
DatabaseHelper.java uses a lazy singleton pattern without synchronization:
private static Connection connection = null;
public static Connection getConnection() {
if (connection == null) ...
Description
The codebase mixes naming conventions inconsistently:
| Convention | Examples |
| --- | --- |
| camelCase | reporterId, projectCode, createdDate |
| snake_case | assignee_id, due_date, created_at, ...
Description
The pom.xml explicitly declares Jackson Databind 2.13.0, which conflicts with the version managed by Spring Boot 2.7.18
parent POM.
!-- FIXME: jackson version conflict with spring boot parent ...
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 ...
Description
DatabaseHelper.java contains raw JDBC code that:
1. Concatenates user input directly into SQL strings (SQL injection)
2. Never closes ResultSet, Statement, or Connection objects (resource ...
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
We have a custom StringUtils class that duplicates functionality already available in Apache Commons Lang 3 (which is
already in our dependencies!).
Our version has known bugs:
- sanitize() ...

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.