Skip to content

Commit 613f430

Browse files
logging failure to download random beacon key as fatal instead of info in the transit script
1 parent c8e5cc4 commit 613f430

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().Msg("could not download file from google bucket")
8989
} else {
9090
err = unWrapFile(flagBootDir, nodeID, flagOutputDir, unWrappedRandomBeaconPath)
9191
if err != nil {

0 commit comments

Comments
 (0)