Skip to content

Commit

Permalink
Minor refactoring of DeltaLog.scala
Browse files Browse the repository at this point in the history
GitOrigin-RevId: aedee6a7312093c325d003016b7130adb906326f
  • Loading branch information
andrewli81 authored and scottsand-db committed Jan 4, 2023
1 parent e017743 commit c3e0a1a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,10 @@ object DeltaLog extends DeltaLogging {
// - Different `authority` (e.g., different user tokens in the path)
// - Different mount point.
try {
deltaLogCache.get(path -> fileSystemOptions, () => createDeltaLog())
deltaLogCache.get(path -> fileSystemOptions, () => {
createDeltaLog()
}
)
} catch {
case e: com.google.common.util.concurrent.UncheckedExecutionException =>
throw e.getCause
Expand Down

0 comments on commit c3e0a1a

Please sign in to comment.