Skip to content

Commit 59263ae

Browse files
committed
Fix instance name parsing.
1 parent cf9f0e9 commit 59263ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nativelink-service/src/execution_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl NativelinkOperationId {
6363

6464
fn from_name(name: &str) -> Result<Self, Error> {
6565
let (instance_name, name) = name
66-
.rsplit_once('/')
66+
.split_once('/')
6767
.err_tip(|| "Expected instance_name and name to be separated by '/'")?;
6868
Ok(Self::new(
6969
instance_name.to_string(),

0 commit comments

Comments
 (0)