tape: improve export_media error message for not found tape

'export_media' can handle if the tape is in either a normal slot of the
library, or in the drive assigned to the current pool writer.
(because we need to lock the drive)

if it is, for some reason, in a different drive, the error message
 'media is not online'
could be slightly confusing for a user, since it would appear in the drive list

add the 'or a differen drive' to make it clearer

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-10-15 10:32:59 +02:00 committed by Dietmar Maurer
parent d26865c52c
commit ac2ca6c341

View File

@ -171,7 +171,7 @@ impl PoolWriter {
if let Some(slot) = changer.export_media(label_text)? {
task_log!(worker, "exported media '{}' to import/export slot {}", label_text, slot);
} else {
task_warn!(worker, "export failed - media '{}' is not online", label_text);
task_warn!(worker, "export failed - media '{}' is not online or in different drive", label_text);
}
}