Github user tae-jun commented on the issue: https://github.com/apache/zeppelin/pull/2543 @byung-u Oh, I didn't see the code and commented above...ð But I found you missed something! The original code has an error because it always gets `lastRunningUnixTime` from the last paragraph. So, you can fix it by switching the code below ```java lastRunningUnixTime = getUnixTimeLastRunParagraph(paragraph); ``` to ```java lastRunningUnixTime = Math.max(getUnixTimeLastRunParagraph(paragraph), lastRunningUnixTime); ``` Then, `lastRunningUnixTime` will be the latest running time among the paragraphs. It will be appreciated if you address it! Thanks :)
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---