Skip to content

Commit

Permalink
fix kernel_pod_name (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
shouples authored Aug 15, 2023
1 parent 6ebf466 commit 3b93f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion origami/clients/rtu.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def cell_ids(self):
@property
def kernel_pod_name(self) -> str:
"""Transform the file_id into the Pod name used to build the kernels/ RTU channel"""
return f'kernels/notebook-kernel-{self.file_id.hex[:15]}'
return f'kernels/notebook-kernel-{self.file_id.hex[:20]}'

def send(self, msg: RTURequest):
"""
Expand Down

0 comments on commit 3b93f62

Please sign in to comment.