File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
foundationdb/src/directory Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ impl DirectoryLayer {
142
142
self . node_subspace . subspace ( & new_node_key) . bytes ( ) ,
143
143
new_subspace. bytes ( ) ,
144
144
) ;
145
- println ! ( "writing to {:?}" , & new_node_key) ;
146
145
147
146
Ok ( new_subspace)
148
147
}
@@ -219,13 +218,11 @@ impl DirectoryLayer {
219
218
220
219
match trx. get ( next_node_subspace. bytes ( ) , false ) . await ? {
221
220
None => {
222
- println ! ( "found none on `{:?}`" , next_node_subspace. bytes( ) ) ;
223
221
if !path. ends_with ( & [ path_name] ) {
224
222
unimplemented ! ( "node not found" )
225
223
}
226
224
}
227
225
Some ( fdb_slice) => {
228
- println ! ( "found a node {:?}" , fdb_slice. get( 0 ) ) ;
229
226
node. subspace = next_node_subspace;
230
227
node. content_subspace = Some ( Subspace :: from_bytes ( & * fdb_slice) ) ;
231
228
node. path . push ( path_name. to_owned ( ) ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ fdb_rs_dir=$(pwd)
6
6
bindingtester=" ${fdb_rs_dir:? } /$1 "
7
7
case $( uname) in
8
8
Darwin)
9
- # brew install mono
9
+ brew install mono
10
10
;;
11
11
Linux)
12
12
sudo apt update
22
22
cd ${fdb_builddir:? }
23
23
24
24
# # 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
26
26
cd foundationdb
27
27
git checkout release-6.1
28
28
You can’t perform that action at this time.
0 commit comments