Skip to content

Commit f98585d

Browse files
committed
stop using parent/child timings in an effort to stop 500 errors on upload over time
GitOrigin-RevId: 08d849b94914d79ebbea73dcbc8aa4d526b3956b
1 parent cf90a7b commit f98585d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/us/mcparks/showscript/showscript/framework/schedulers/TimecodeShowScheduler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public void restart() {
114114

115115

116116
protected void executeShowAction(ShowAction action) {
117-
try (MCTiming timing = Main.timingManager.ofStart("ticks: " + timecode + " " + action.toString(), getTiming())) {
117+
//try (MCTiming timing = Main.timingManager.ofStart("ticks: " + timecode + " " + action.toString(), getTiming())) {
118118
// System.out.println("EXEC: " + action.toString());
119119
// display if the flag is set
120120
if (display && sender != null) {
@@ -131,7 +131,7 @@ protected void executeShowAction(ShowAction action) {
131131
//sender.sendMessage();
132132
stopShow();
133133
}
134-
}
134+
//}
135135
}
136136

137137
private void init() {

0 commit comments

Comments
 (0)