-
Notifications
You must be signed in to change notification settings - Fork 17
Refactoring the three phases of data collection tasks using disruptor #48
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
Conversation
| TASK_REPOSITORY_MAP.put(taskId, taskRepository); | ||
| taskRepository.create(); | ||
|
|
||
| LOGGER.info("Successfully created task {}", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
| } | ||
|
|
||
| TASK_REPOSITORY_MAP.get(taskId).start(); | ||
| LOGGER.info("Task {} started successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
| .build(); | ||
| } | ||
|
|
||
| LOGGER.info("Task {} stopped successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
| } | ||
|
|
||
| TASK_REPOSITORY_MAP.remove(taskId).drop(); | ||
| LOGGER.info("Task {} dropped successfully", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
| if (TASK_REPOSITORY_MAP.containsKey(taskId)) { | ||
| return true; | ||
| } | ||
| LOGGER.warn("Task {} not found", taskId); |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
This log entry depends on a
user-provided value
This log entry depends on a
user-provided value
This log entry depends on a
No description provided.