fix connections status raising an error during startup

This commit is contained in:
Jack Robison 2019-06-07 12:14:05 -04:00
parent 4ae59b15e0
commit 8683e96156
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -306,7 +306,7 @@ class BlobComponent(Component):
count = len(self.blob_manager.completed_blob_hashes) count = len(self.blob_manager.completed_blob_hashes)
return { return {
'finished_blobs': count, 'finished_blobs': count,
'connections': self.blob_manager.connection_manager.status 'connections': {} if not self.blob_manager else self.blob_manager.connection_manager.status
} }