Collector: Refactor package structure and polish code style#49
Collector: Refactor package structure and polish code style#49SteveYurongSu merged 7 commits intomasterfrom
Conversation
| .build(); | ||
| } catch (final Exception e) { | ||
| LOGGER.warn("Failed to create task", e); | ||
| LOGGER.warn("Failed to create task {} because {}", taskId, e.getMessage(), e); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| try { | ||
| tasks.get(taskId).start(); | ||
|
|
||
| LOGGER.info("Task {} start successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| .entity(String.format("task %s start successfully", taskId)) | ||
| .build(); | ||
| } catch (Exception e) { | ||
| LOGGER.warn("Failed to start task {} because {}", taskId, e.getMessage(), e); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| } | ||
| tasks.get(taskId).stop(); | ||
|
|
||
| LOGGER.info("Task {} stop successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| .build(); | ||
| } catch (final Exception e) { | ||
| LOGGER.warn("Failed to stop task", e); | ||
| LOGGER.warn("Failed to stop task {} because {}", taskId, e.getMessage(), e); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| try { | ||
| tasks.remove(taskId).drop(); | ||
|
|
||
| LOGGER.info("Task {} drop successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
| .entity(String.format("task %s drop successfully", taskId)) | ||
| .build(); | ||
| } catch (final Exception e) { | ||
| LOGGER.warn("Failed to drop task {} because {}", taskId, e.getMessage(), e); |
Check failure
Code scanning / CodeQL
Log Injection High
Copilot Autofix
AI about 1 year ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
No description provided.