Skip to content

Commit a6d48eb

Browse files
committed
drop implicit volume creation warning for now
1 parent c3c54c1 commit a6d48eb

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Sources/ContainerClient/Utility.swift

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,7 @@ public struct Utility {
309309
volumeCreated = false
310310
}
311311

312-
// Warn user if named volume was auto-created
313-
if volumeCreated && !parsed.isAnonymous {
314-
let warning = "Volume '\(parsed.name)' does not exist. Creating new volume."
315-
let formattedWarning = "\u{001B}[33m\(warning)\u{001B}[0m\n"
316-
if let warningData = formattedWarning.data(using: .utf8) {
317-
FileHandle.standardError.write(warningData)
318-
}
319-
}
312+
// TODO: Warn user if named volume was auto-created
320313

321314
return volume
322315
}

0 commit comments

Comments
 (0)