Commit a8b0695c authored by Waleed Akbar's avatar Waleed Akbar
Browse files

Updated Analytics Backed

- Add Exception
parent bba35aa9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -153,8 +153,8 @@ class AnalyticsBackendService(GenericGrpcService):
            del self.active_streamers[analyzer_uuid]
            LOGGER.info(f"Streamer with analyzer_uuid '{analyzer_uuid}' has been trerminated sucessfully.")
            return True
        except Exception as e:
            LOGGER.error("Failed to stop Dask Streamer. ERROR: {:}".format(e))
        except:
            LOGGER.exception("Failed to stop Dask Streamer. ERROR: {:}".format(e))
            return False

    def close(self):