Skip to content

Commit

Permalink
[HWORKS-759][APPEND] Fix HWORKS-759: Show custom commands file that w…
Browse files Browse the repository at this point in the history
…as used to build the environment in the environment history (#1570) (#1405)
  • Loading branch information
gibchikafa authored Oct 3, 2023
1 parent 6cfe1b2 commit bc63fe3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public void isAlive() {
allCondaCommandsNewByProject.get(project).sort(ASC_COMPARATOR);
CondaCommands commandToExecute = allCondaCommandsNewByProject.get(project).get(0);
// check if it was not deleted...
if (condaCommandFacade.findCondaCommand(commandToExecute.getId()) != null) {
if (condaCommandFacade.findCondaCommand(commandToExecute.getId()) == null) {
LOG.log(Level.FINE, "Command with ID " + commandToExecute.getId() + " not found, skipping...");
} else {
commandsController.updateCondaCommandStatus(
Expand Down

0 comments on commit bc63fe3

Please sign in to comment.