-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPMRPP-88902 || Not clear error when user submits invalid tokenon
(cherry picked from commit 5cae3af)
- Loading branch information
1 parent
cdbf551
commit a443396
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,15 +25,18 @@ | |
import com.epam.ta.reportportal.ws.model.ErrorType; | ||
|
||
import java.util.Map; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import static java.util.Optional.ofNullable; | ||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class TestConnectionCommand implements PluginCommand<Boolean> { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(TestConnectionCommand.class); | ||
|
||
private final CloudJiraClientProvider cloudJiraClientProvider; | ||
|
||
public TestConnectionCommand(CloudJiraClientProvider cloudJiraClientProvider) { | ||
|