Skip to content

Commit

Permalink
fix closing bracket typo
Browse files Browse the repository at this point in the history
  • Loading branch information
atangwbd committed Mar 26, 2024
1 parent 574ff6b commit ccf4894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ private[offline] object AclCheckUtils {
// Check read authorization on a path string
def checkReadAuthorization(conf: Configuration, pathName: String): Try[Unit] = {
// no way to check jdbc auth yet
if (pathName.startsWith("jdbc:") || pathName.startsWith("unity:")) {{
if (pathName.startsWith("jdbc:") || pathName.startsWith("unity:")) {
Success(())
} else {
val path = new Path(pathName)
Expand Down

0 comments on commit ccf4894

Please sign in to comment.