Skip to content

Commit 7835549

Browse files
Merge pull request #7757 from onflow/vishal/transit_script_update
logging failure to download random beacon key as fatal instead of inf…
2 parents 86f8ac6 + 64228dd commit 7835549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/bootstrap/transit/cmd/pull_root_block.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func pullRootBlock(c *cobra.Command, args []string) {
8585

8686
err = bucket.DownloadFile(ctx, client, fullRandomBeaconPath, objectName)
8787
if err != nil {
88-
log.Info().Msg("could not download file from google bucket")
88+
log.Fatal().Err(err).Msg("could not download random beacon key file from google bucket")
8989
} else {
9090
err = unWrapFile(flagBootDir, nodeID, flagOutputDir, unWrappedRandomBeaconPath)
9191
if err != nil {

0 commit comments

Comments
 (0)