第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

無法使用 golang 停止 GCP 實例

無法使用 golang 停止 GCP 實例

Go
不負相思意 2023-06-26 15:43:23
我正在嘗試學(xué)習 golang,并決定構(gòu)建一個簡單的應(yīng)用程序來停止我的 gcloud 項目中的實例。下面是相關(guān)片段。func stopTaggedMachines(svc *compute.Service, project, zone, tag string) ([]string, error) {    //result := computeService.Instances.List("my-project", "us-west1-b")    var instances []string    f := func(page *compute.InstanceList) error {        for _, v := range page.Items {            if v.Labels["gcp-idler-managed"] == "true" {                result := svc.Instances.Stop(project, zone, v.Name)                fmt.Printf("[INFO] gcp-machine-idler: Instance in state %v, Stopping %v... Result - %v\n", v.Status, v.Name, result)                instances.append(result)            }        }        return nil    }    call := svc.Instances.List("my-project", "us-west1-b")    if err := call.Pages(oauth2.NoContext, f); err != nil {        return instances, nil    }    return instances, nil}func main() {    // Use oauth2.NoContext if there isn't a good context to pass in.    ctx := context.Background()    computeService, err := compute.NewService(ctx)    if err != nil {        log.Fatal(err)    }    stopTaggedMachines(computeService, "my-project", "us-west1-b", "gcp-idler-managed")    return}當我運行時,go run main.go我得到的輸出表明機器處于運行狀態(tài)(所以我知道我已經(jīng)到達停止線)。然而,機器從未停止。我有點困惑這里可能出了什么問題,或者(更重要的是)如何找到可以幫助我的資源。我的代碼是否存在邏輯缺陷?更有經(jīng)驗的 Go 開發(fā)人員如何找到有關(guān)此方法及其用法的更多信息?從我能找到的來看,文檔似乎相當稀疏?;卮穑焊铝舜a片段...stopTaggedMachines像這樣打電話stopTaggedMachines(ctx, computeService, "my-project", "us-west1-b", "gcp-idler-managed")Stop像這樣打電話result, err := svc.Instances.Stop(project, zone, v.Name).Context(ctx).Do()
查看完整描述

1 回答

?
慕蓋茨4494581

TA貢獻1850條經(jīng)驗 獲得超11個贊

更改這行代碼:

result := svc.Instances.Stop(project, zone, v.Name)

到:

result, err := svc.Instances.Stop(project, zone, v.Name).Context(ctx).Do()


查看完整回答
反對 回復(fù) 2023-06-26
  • 1 回答
  • 0 關(guān)注
  • 221 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號