Method: Etcd::Observer#pp_thread_status

Defined in:
lib/etcd/observer.rb

#pp_thread_statusObject



70
71
72
73
74
75
# File 'lib/etcd/observer.rb', line 70

def pp_thread_status
  st = @thread.status
  st = 'dead by exception'   if st == nil
  st = 'dead by termination' if st == false
  st
end