mirror of https://github.com/chaos-mesh/chaosd.git
				
				
				
			fix getting process name
Signed-off-by: SSpirits <admin@lv5.moe>
This commit is contained in:
		
							parent
							
								
									19a157239e
								
							
						
					
					
						commit
						722aca5e1d
					
				| 
						 | 
				
			
			@ -44,8 +44,9 @@ func (processAttack) Attack(options core.AttackConfig, _ Environment) error {
 | 
			
		|||
	for _, p := range processes {
 | 
			
		||||
		pid := int(p.Pid)
 | 
			
		||||
		name, err := p.Name()
 | 
			
		||||
		// If we can't get the name of the process, we just skip it.
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return errors.WithStack(err)
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if attack.Process == strconv.Itoa(pid) || attack.Process == name {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue