Project

General

Profile

action #158185

Updated by livdywan about 1 month ago

### Observation 
 We Hi openqa Tools team, 

 we have a parallel job which failed in getting the vars from its pair. Rerun still failed. Is there something wrong with the worker service? 

 ``` 
 sub get_var_from_parent { 
     my ($self, $var) = @_; 
     my $parents = get_parents(); 
     #Query every parent to find the var 
     for my $job_id (@$parents) { 
         my $ref = get_job_autoinst_vars($job_id); 
         return $ref->{$var} if defined $ref->{$var}; 
     } 
     return; 
 } 
 ``` 

 https://openqa.suse.de/tests/13885165/logfile?filename=autoinst-log.txt 
 ``` 
 [2024-03-27T15:39:25.691962Z] [debug] [pid:4639] get_job_autoinst_vars: Connection error: Can't connect: Name or service not known; URL was http://worker35:20493/wS5wkxkWNNB9LK92/vars 
 ```

Back