Skip to content
Snippets Groups Projects
Commit be3c406e authored by Reynold Xin's avatar Reynold Xin
Browse files

Fixed the typo pointed out by Matei.

parent 14502967
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ private object Utils extends Logging { ...@@ -116,7 +116,7 @@ private object Utils extends Logging {
while (dir == null) { while (dir == null) {
attempts += 1 attempts += 1
if (attempts > maxAttempts) { if (attempts > maxAttempts) {
throw new IOException("Failed to create a temp directory under (" + root + ") after " + throw new IOException("Failed to create a temp directory (under " + root + ") after " +
maxAttempts + " attempts!") maxAttempts + " attempts!")
} }
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment