We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf9f0e9 commit 59263aeCopy full SHA for 59263ae
nativelink-service/src/execution_server.rs
@@ -63,7 +63,7 @@ impl NativelinkOperationId {
63
64
fn from_name(name: &str) -> Result<Self, Error> {
65
let (instance_name, name) = name
66
- .rsplit_once('/')
+ .split_once('/')
67
.err_tip(|| "Expected instance_name and name to be separated by '/'")?;
68
Ok(Self::new(
69
instance_name.to_string(),
0 commit comments