work in progress

This commit is contained in:
Michael Rodriguez 2008-03-07 15:36:00 -08:00 committed by Sage Weil
parent 415e127791
commit 6f83a0130c

View File

@ -109,17 +109,17 @@ foreach my $bucket_type (keys %{$arr->{'buckets'}}) {
my $alg = $arr->{'buckets'}->{$bucket_type}->{$bucket_name}->{'alg'};
$alg = 'straw' if !$alg;
print "... alg is: $alg\n";
print "... b_id is: $bucket_id\n";
print "alg is: $alg\n";
print "b_id is: $bucket_id\n";
# bucket_id, alg, type, size, items, weights
#TODO: pass the correct value for type to add_bucket
my $result = $wrap->add_bucket($bucket_id, $alg_types->{$alg}, 0, scalar(@item_ids), \@item_ids, []);
print "... result: $result\n\n";
print "... $result\n\n";
}
}
print "Done!\n";
print "Line: " . __LINE__ ."\n";
=item