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

EPMRPP-96337 || Change event based reporting to user reporting queues #2083

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.epam.ta.reportportal.core.launch.StartLaunchHandler;
import com.epam.ta.reportportal.core.launch.util.LinkGenerator;
import com.epam.ta.reportportal.core.log.CreateLogHandler;
import com.epam.ta.reportportal.reporting.async.producer.*;

Choose a reason for hiding this comment

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

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.imports.AvoidStarImportCheck> reported by reviewdog 🐶
Using the '.' form of import should be avoided - com.epam.ta.reportportal.reporting.async.producer..

import com.epam.ta.reportportal.util.ProjectExtractor;
import java.util.Optional;
import javax.servlet.http.HttpServletRequest;
Expand All @@ -49,15 +50,15 @@
@RequiredArgsConstructor
public class EventBasedReporting {

private final StartLaunchHandler startLaunchHandler;
private final LaunchStartProducer startLaunchHandler;

private final FinishLaunchHandler finishLaunchHandler;
private final LaunchFinishProducer finishLaunchHandler;

private final StartTestItemHandler startTestItemHandler;
private final ItemStartProducer startTestItemHandler;

private final FinishTestItemHandler finishTestItemHandler;
private final ItemFinishProducer finishTestItemHandler;

private final CreateLogHandler createLogHandler;
private final LogProducer createLogHandler;

private final ProjectExtractor projectExtractor;

Expand Down
Loading