Skip to content

Commit

Permalink
Merge branch 'Netflix:main' into oracle_persistence
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshyaddanapudi authored May 28, 2022
2 parents 20810a6 + e581b14 commit e02c82f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions WHOSUSING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ We would like to keep track of whose using Conductor. Please send a pull request
* [JP Morgan Chase](www.chase.com) [[@maheshyaddanapudi](https://github.com/maheshyaddanapudi)]
* [Orkes ](www.orkes.io)[[@CherishSantoshi](https://github.com/CherishSantoshi)]
* [313X](https://313x.com.br)[[@dalmoveras](https://github.com/dalmoveras)]
* [Supercharge](https://supercharge.io)[[@team-supercharge](https://github.com/team-supercharge)]

Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ void checkWorkflowTimeout(WorkflowModel workflow) {

switch (workflowDef.getTimeoutPolicy()) {
case ALERT_ONLY:
LOGGER.info(reason);
LOGGER.info("{} {}", workflow.getWorkflowId(), reason);
Monitors.recordWorkflowTermination(
workflow.getWorkflowName(),
WorkflowModel.Status.TIMED_OUT,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ public WorkflowModel terminateWorkflow(
workflowStatusListener.onWorkflowTerminatedIfEnabled(workflow);
Monitors.recordWorkflowTermination(
workflow.getWorkflowName(), workflow.getStatus(), workflow.getOwnerApp());

LOGGER.info("Workflow {} is terminated because of {}", workflowId, reason);
List<TaskModel> tasks = workflow.getTasks();
try {
// Remove from the task queue if they were there
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

plugins {
id "com.gradle.enterprise" version "3.10"
id "com.gradle.enterprise" version "3.10.1"
}

gradleEnterprise {
Expand Down

0 comments on commit e02c82f

Please sign in to comment.