method => 'upload_records',
api_name => 'open-ils.acq.process_upload_records',
stream => 1,
- max_chunk_count => 1
+ max_bundle_count => 1
);
sub upload_records {
],
return => {desc => 'Streams a total versus completed counts object, event on error'}
},
- max_chunk_count => 1
+ max_bundle_count => 1
);
sub create_po_assets {
],
return => {desc => 'The purchase order id, Event on failure'}
},
- max_chunk_count => 1
+ max_bundle_count => 1
);
sub create_purchase_order_api {
api_name => 'open-ils.search.z3950.bucket_search_queue',
stream => 1,
# disable opensrf chunking so the caller can receive timely responses
- max_chunk_size => 0,
+ max_bundle_count => 1,
signature => {
desc => q/
Performs a Z39.50 search for every record in a bucket, using the
method => 'verify_session',
api_name => 'open-ils.url_verify.session.verify',
stream => 1,
- max_chunk_size => 0,
+ max_bundle_count => 1,
signature => {
desc => q/
Performs verification on all (or a subset of the) URLs within the requested session.
my $session_name = shift;
my $exit_early = shift;
- $client->max_chunk_count($self->{max_bundle_count}) if (!$client->can('max_bundle_count') && $self->{max_bundle_count});
-
my $e = new_editor(authtoken => $auth, xact => 1);
return $e->die_event unless $e->checkauth;
sub import_queue {
my($self, $conn, $auth, $q_id, $options) = @_;
- $conn->max_chunk_count($self->{max_bundle_count}) if (!$conn->can('max_bundle_count') && $self->{max_bundle_count});
my $e = new_editor(authtoken => $auth, xact => 1);
return $e->die_event unless $e->checkauth;
exit_early => $exit_early
};
- $conn->max_chunk_count(1) if (!$conn->can('max_bundle_size') && $conn->can('max_chunk_size') && $$args{report_all});
+ $conn->max_bundle_count(1) if ($$args{report_all});
my $auto_overlay_exact = $$args{auto_overlay_exact};
my $auto_overlay_1match = $$args{auto_overlay_1match};