Skip to content

Commit 4fa4237

Browse files
bump msgq (#36891)
* bump msgq * update prefix
1 parent 4624d8f commit 4fa4237

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/prefix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class OpenpilotPrefix:
1212
def __init__(self, prefix: str = None, create_dirs_on_enter: bool = True, clean_dirs_on_exit: bool = True, shared_download_cache: bool = False):
1313
self.prefix = prefix if prefix else str(uuid.uuid4().hex[0:15])
14-
self.msgq_path = os.path.join(Paths.shm_path(), self.prefix)
14+
self.msgq_path = os.path.join(Paths.shm_path(), "msgq_" + self.prefix)
1515
self.create_dirs_on_enter = create_dirs_on_enter
1616
self.clean_dirs_on_exit = clean_dirs_on_exit
1717
self.shared_download_cache = shared_download_cache

0 commit comments

Comments
 (0)