We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a8233c commit 087f131Copy full SHA for 087f131
cmd/attest.go
@@ -4,6 +4,7 @@ import (
4
"context"
5
"fmt"
6
"io"
7
+ "log"
8
"strconv"
9
10
"cloud.google.com/go/compute/metadata"
@@ -116,7 +117,7 @@ hardware and guarantees a fresh quote.
116
117
if key == "gceAK" {
118
instanceInfo, err := getInstanceInfoFromMetadata()
119
if err != nil {
- return err
120
+ log.Printf("Could not get GCE instance info, continuing without it: %v", err)
121
}
122
attestation.InstanceInfo = instanceInfo
123
0 commit comments