File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4
4
test :
5
5
strategy :
6
6
matrix :
7
- go-versions : ['1.23', '1. 22']
7
+ go-versions : ['1.22']
8
8
platform : [ubuntu-22.04]
9
9
environment-variables : [build/config/plain.sh, build/config/libpfm4.sh, build/config/libipmctl.sh]
10
10
runs-on : ${{ matrix.platform }}
31
31
test-integration :
32
32
strategy :
33
33
matrix :
34
- go-versions : ['1.23', '1. 22']
34
+ go-versions : ['1.22']
35
35
platform : [ubuntu-22.04]
36
36
environment-variables : [build/config/plain.sh, build/config/libpfm4.sh, build/config/libipmctl.sh]
37
37
runs-on : ${{ matrix.platform }}
Original file line number Diff line number Diff line change 15
15
package gce
16
16
17
17
import (
18
+ "context"
18
19
"os"
19
20
"strings"
20
21
@@ -48,7 +49,7 @@ func (provider) IsActiveProvider() bool {
48
49
}
49
50
50
51
func (provider ) GetInstanceType () info.InstanceType {
51
- machineType , err := metadata .Get ( "instance/machine-type" )
52
+ machineType , err := metadata .GetWithContext ( context . TODO (), "instance/machine-type" )
52
53
if err != nil {
53
54
return info .UnknownInstance
54
55
}
@@ -58,7 +59,7 @@ func (provider) GetInstanceType() info.InstanceType {
58
59
}
59
60
60
61
func (provider ) GetInstanceID () info.InstanceID {
61
- instanceID , err := metadata .Get ( "instance/id" )
62
+ instanceID , err := metadata .GetWithContext ( context . TODO (), "instance/id" )
62
63
if err != nil {
63
64
return info .UnknownInstance
64
65
}
You can’t perform that action at this time.
0 commit comments