Skip to content
Snippets Groups Projects
Commit 1613dc2f authored by Eric Cano's avatar Eric Cano
Browse files

Increased the tape server's shutdown timeout to 15 minutes.

This is a stop gap solution while we wait for efficient archive/retrieve reporting.
parent a74a365a
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,8 @@ const std::map<SessionState, DriveHandler::Timeout> DriveHandler::m_stateChangeT
// We expect the process to exit within 5 minutes of getting in this state. This state
// potentially covers the draining of metadata to central storage (if not faster that
// unmounting the tape).
{SessionState::ShuttingDown, std::chrono::duration_cast<Timeout>(std::chrono::minutes(5))}
// TODO: this is set temporarily to 15 minutes while the reporting is not yet parallelized.
{SessionState::ShuttingDown, std::chrono::duration_cast<Timeout>(std::chrono::minutes(15))}
};
//------------------------------------------------------------------------------
......
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