mirror of
				https://github.com/huggingface/text-generation-inference.git
				synced 2023-08-23 10:47:54 +03:00 
			
		
		
		
	feat(launcher): Improve error message when download process fails. (#276)
This commit is contained in:
		| @@ -627,8 +627,21 @@ fn download_convert_model( | ||||
|                         return Err(LauncherError::DownloadError); | ||||
|                     } | ||||
|                 } | ||||
|                 _ => { | ||||
|                     tracing::error!("Download process exited with an unknown status."); | ||||
|                 ExitStatus::Signaled(signal) => { | ||||
|                     let mut err = String::new(); | ||||
|                     download_process | ||||
|                         .stderr | ||||
|                         .take() | ||||
|                         .unwrap() | ||||
|                         .read_to_string(&mut err) | ||||
|                         .unwrap(); | ||||
|                     tracing::error!( | ||||
|                         "Download process was signaled to shutdown with signal {signal}: {err}" | ||||
|                     ); | ||||
|                     return Err(LauncherError::DownloadError); | ||||
|                 } | ||||
|                 e => { | ||||
|                     tracing::error!("Download process exited with an unknown status.: {e:?}"); | ||||
|                     return Err(LauncherError::DownloadError); | ||||
|                 } | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Nicolas Patry
					Nicolas Patry