Skip Menu |

This queue is for tickets about the AnyEvent-CouchDB CPAN distribution.

Report information
The Basics
Id: 77230
Status: open
Priority: 0/
Queue: AnyEvent-CouchDB

People
Owner: Nobody in particular
Requestors: DAVEGMX [...] cpan.org
Cc: jeff [...] namimedia.com
montgomery [...] namimedia.com
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



CC: montgomery [...] namimedia.com, jeff [...] namimedia.com
Subject: Patch for AnyEvent-CouchDB-Stream
Recommended fix for since value. Also recommend adding a include_docs option to changes stream. Here is the proposed diff. Thanks John. 21c21 < my $since = delete $args{since} || 0; --- Show quoted text
> my $since = delete $args{since} || 1;
29d28 < my $include_docs = delete $args{include_docs}; 33c32 < $uri->query_form( filter => $filter, feed => "continuous", since => $since, heartbeat => $heartbeat, include_docs => $include_docs ); --- Show quoted text
> $uri->query_form( filter => $filter, feed => "continuous", since => $since, heartbeat =>
$heartbeat );
I'm sorry for being such a bad maintainer. https://metacpan.org/source/BEPPU/AnyEvent-CouchDB-1.29/Changes On Tue May 15 20:02:52 2012, DAVEGMX wrote: Show quoted text
> Recommended fix for since value. Also recommend adding a include_docs > option to changes > stream. Here is the proposed diff. Thanks John. > > 21c21 > < my $since = delete $args{since} || 0; > ---
> > my $since = delete $args{since} || 1;
> 29d28 > < my $include_docs = delete $args{include_docs}; > 33c32 > < $uri->query_form( filter => $filter, feed => "continuous", since > => $since, heartbeat => > $heartbeat, include_docs => $include_docs ); > ---
> > $uri->query_form( filter => $filter, feed => "continuous", since
> => $since, heartbeat => > $heartbeat );
Thanks for the patch.