Drop shm logging levels to debug over warning
							parent
							
								
									3ead16c47c
								
							
						
					
					
						commit
						3fccd8a67a
					
				| 
						 | 
				
			
			@ -649,7 +649,7 @@ def maybe_open_shm_array(
 | 
			
		|||
        token = _known_tokens[key]
 | 
			
		||||
        return attach_shm_array(token=token, **kwargs), False
 | 
			
		||||
    except KeyError:
 | 
			
		||||
        log.warning(f"Could not find {key} in shms cache")
 | 
			
		||||
        log.debug(f"Could not find {key} in shms cache")
 | 
			
		||||
        if dtype:
 | 
			
		||||
            token = _make_token(
 | 
			
		||||
                key,
 | 
			
		||||
| 
						 | 
				
			
			@ -659,7 +659,7 @@ def maybe_open_shm_array(
 | 
			
		|||
            try:
 | 
			
		||||
                return attach_shm_array(token=token, **kwargs), False
 | 
			
		||||
            except FileNotFoundError:
 | 
			
		||||
                log.warning(f"Could not attach to shm with token {token}")
 | 
			
		||||
                log.debug(f"Could not attach to shm with token {token}")
 | 
			
		||||
 | 
			
		||||
        # This actor does not know about memory
 | 
			
		||||
        # associated with the provided "key".
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue