Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 28204 invoked from network); 27 Jan 2010 18:21:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Jan 2010 18:21:32 -0000 Received: (qmail 99643 invoked by uid 500); 27 Jan 2010 18:21:31 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 99569 invoked by uid 500); 27 Jan 2010 18:21:31 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 99559 invoked by uid 99); 27 Jan 2010 18:21:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Jan 2010 18:21:31 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of david.coallier@gmail.com designates 209.85.218.211 as permitted sender) Received: from [209.85.218.211] (HELO mail-bw0-f211.google.com) (209.85.218.211) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Jan 2010 18:21:23 +0000 Received: by bwz3 with SMTP id 3so4086078bwz.33 for ; Wed, 27 Jan 2010 10:21:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=dtTCrtlsmHrjh4RBhobl801j5pywtYW/3BwZifQhZAU=; b=OlUj6qbaaQ6GSfaTYmzpcpQXKPl1ui8SgbadDLyA6DgRG/Hg0AoGN0KwcNnMGCofYO hOqn4hZ3MX1QQazkaTDJJdvXSCbVWHwkZtpMAn1M/Wm4RR0VeZ9uEpLK22+CIIkGJvS/ qHha6bz4e8q6vHRncOWAEp6tR89/a8n3f9TXk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=TO179zs0AqzyZiV/EJ8rgRE2rMdRGJf/CkAobtlUathaeZiZUdB258ukJEyoZvn7tT yV75pS/VMTsjUF0nKdi0nrSBH8ZIpYxQN2IzhTkWuUF9pFmdQNqfhwdJAtCwUkXaErOB w1QG3AOcEfu3OQL36RmxwcEJfKxWC7+SKSkjM= MIME-Version: 1.0 Received: by 10.204.24.71 with SMTP id u7mr2277157bkb.35.1264616463267; Wed, 27 Jan 2010 10:21:03 -0800 (PST) Date: Wed, 27 Jan 2010 18:21:03 +0000 Message-ID: Subject: Time processing difference between 0.11.0b898401 and 0.11.0b903617 From: David Coallier To: dev@couchdb.apache.org Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hey lads, I'm suspecting a bug but before I report I was wondering if anyone was aware of a change that would have happened between 0.11.0b898401 and 0.11.0b903617. The problem is quite simple, I have a few on 0.11.0b898401 that pretty much does that: function(doc) { var x = new Date(1264515335 * 1000); emit(x, null); } Which outputs "2010-01-26T14:15:35Z" which is expected. Then on the second server which is version: 0.11.0b903617 (Which is also a replica of the first example -- continuous) if you run the same function be it _temp or not: function(doc) { var x = new Date(1264515335 * 1000); emit(x, null); } You get the {} as the key. Anyone's got an idea what might have happened? -- Slan, David