add missing return statement
Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
parent
611eb86e68
commit
1d807c2291
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ func (c *LiveClient) getBundle(url string) (*bundle.Bundle, error) {
|
|||
var out []byte
|
||||
decompressed, err := snappy.Decode(out, body)
|
||||
if err != nil {
|
||||
fmt.Errorf("failed to decompress with snappy: %w", err)
|
||||
return fmt.Errorf("failed to decompress with snappy: %w", err)
|
||||
}
|
||||
|
||||
var pbBundle v1.Bundle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue