Commit 826b5af0 authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

Merge branch '3-get-rid-of-isalive-warning' into 'main'

rename isAlive

See merge request ndip/tool-sources/topaz/topaz-reduction!1
parents 81989358 4e1baded
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ after_script:
build-image:
  stage: build
  variables:
    TAG: "0.2"
    TAG: "0.3"
    FORCE_TAGS: "false"
  when: manual
  script:
+1 −1
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ while not all_done:
    thread.start()
  time.sleep(2)
  for thread in active_list:
    if not thread.isAlive():
    if not thread.is_alive():
      active_list.remove( thread )
  if len(list) == 0 and len(active_list) == 0 :
    all_done = True
+1 −1
Original line number Diff line number Diff line
@@ -343,7 +343,7 @@ while not all_done:
    thread.start()
  time.sleep(2)
  for thread in active_list:
    if not thread.isAlive():
    if not thread.is_alive():
      active_list.remove( thread )
  if len(list) == 0 and len(active_list) == 0 :
    all_done = True