Skip to content

Commit

Permalink
Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peacewong committed Jun 10, 2024
1 parent 8389e40 commit 5831a19
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class KerberosUtilsTest {
public void getKerberosRefreshIntervalTest() {

Long refreshInterval = KerberosUtils.getKerberosRefreshInterval();
Assertions.assertTrue(86400000L == refreshInterval.longValue());
Assertions.assertTrue(43200L == refreshInterval.longValue());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ object AccessibleExecutorUtils {
val manager: DefaultNodeHealthyInfoManager =
getApplicationContext.getBean(classOf[DefaultNodeHealthyInfoManager])


def currentEngineIsUnHealthy(): Boolean = {
manager != null && manager.getNodeHealthy() == NodeHealthy.UnHealthy
}
Expand Down

0 comments on commit 5831a19

Please sign in to comment.