吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 564|回复: 0
收起左侧

[求助] 线程安全问题求助

[复制链接]
blue_sea 发表于 2021-11-11 16:47
def main(content,vm_name):
      VM = get_obj(content, [vim.VirtualMachine], vm_name)
      if not VM:
          print(VM, '不存在')
          return
      print("Found: {0}".format(VM.name))
      print("The current powerState is: {0}".format(VM.runtime.powerState))
      if format(VM.runtime.powerState) == "poweredOn":
          print("Attempting to power off {0}".format(VM.name))
          TASK = VM.PowerOffVM_Task()
          wait_for_tasks(content, [TASK])
          print("{0}".format(TASK.info.state))
      print("Destroying VM from vSphere.")
      TASK = VM.Destroy_Task()
      wait_for_tasks(content, [TASK])



请教一下这段代码,哪些地方会出现线程安全问题?

我自己的想法是: 每个线程携带进来的参数不同,虽然,存在if判断,但是每个线程获得的VM是不相同的。下面的if语句同理。请教大神指点指点。

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 21:45

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表