Project

General

Profile

action #107719

Updated by mkittler about 2 years ago

We see the following warnings/errors on o3: 

 ``` 
 [2022-02-28T16:33:43.718187Z] [error] [hzTerrCHXye9] Could not render a response at /usr/share/openqa/script/../lib/OpenQA/WebAPI.pm line 170. 
 ``` 

 This error message is actually logged by Mojolicious (`Mojolicious/Controller.pm`): 

 ``` 
   # Maybe no 404 
   return defined $output ? Mojo::ByteStream->new($output) : undef if $ts; 
   return $maybe            ? undef : Carp::croak("Could not render a response") unless defined $output; 
 ``` 

 Not sure whether there's something we can do about it. It could actually be a problem on our side, e.g. a controller (likely the one of the logfile route) that unexpectedly doesn't render anything.

Back