Skip to content

Commit 26814a1

Browse files
committed
chore: revert wip modifications and debug messages
1 parent 82c8404 commit 26814a1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

foundationdb/src/directory/directory.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ impl DirectoryLayer {
142142
self.node_subspace.subspace(&new_node_key).bytes(),
143143
new_subspace.bytes(),
144144
);
145-
println!("writing to {:?}", &new_node_key);
146145

147146
Ok(new_subspace)
148147
}
@@ -219,13 +218,11 @@ impl DirectoryLayer {
219218

220219
match trx.get(next_node_subspace.bytes(), false).await? {
221220
None => {
222-
println!("found none on `{:?}`", next_node_subspace.bytes());
223221
if !path.ends_with(&[path_name]) {
224222
unimplemented!("node not found")
225223
}
226224
}
227225
Some(fdb_slice) => {
228-
println!("found a node {:?}", fdb_slice.get(0));
229226
node.subspace = next_node_subspace;
230227
node.content_subspace = Some(Subspace::from_bytes(&*fdb_slice));
231228
node.path.push(path_name.to_owned());

scripts/run_bindingtester.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fdb_rs_dir=$(pwd)
66
bindingtester="${fdb_rs_dir:?}/$1"
77
case $(uname) in
88
Darwin)
9-
# brew install mono
9+
brew install mono
1010
;;
1111
Linux)
1212
sudo apt update
@@ -22,7 +22,7 @@ esac
2222
cd ${fdb_builddir:?}
2323

2424
## Get foundationdb source
25-
# git clone --depth 1 https://github.com/apple/foundationdb.git -b release-6.1
25+
git clone --depth 1 https://github.com/apple/foundationdb.git -b release-6.1
2626
cd foundationdb
2727
git checkout release-6.1
2828

0 commit comments

Comments
 (0)