Skip to content

Commit 330a336

Browse files
author
ywoller
committedJul 17, 2017
static successAsync() method in SchedulerLogger.java now obtains instance's flow context through non-static getter getFlowContextAsync() added to TransactionLogger.java in my last commit, instead of through old static getter function.
1 parent 113a84f commit 330a336

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ log/
55
.project
66
.settings/
77
.idea/
8+
*/.idea
89

‎logging-api/src/main/java/com/cisco/oss/foundation/logging/transactions/SchedulerLogger.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static void success(String schedulerResult) {
5858

5959
public static void successAsync(SchedulerLogger schedulerLogger) {
6060

61-
FlowContextFactory.deserializeNativeFlowContext(TransactionLogger.getFlowContextAsync(schedulerLogger));
61+
FlowContextFactory.deserializeNativeFlowContext(schedulerLogger.getFlowContextAsync());
6262
schedulerLogger.successInstance();
6363

6464
}

0 commit comments

Comments
 (0)
Please sign in to comment.