You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gossip.apache.org by "Gary Dusbabek (JIRA)" <ji...@apache.org> on 2017/04/25 13:29:04 UTC

[jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Gary Dusbabek created GOSSIP-84:
-----------------------------------

             Summary: Consistently use Clock or System for time.
                 Key: GOSSIP-84
                 URL: https://issues.apache.org/jira/browse/GOSSIP-84
             Project: Gossip
          Issue Type: Bug
            Reporter: Gary Dusbabek


I see a number of cases where System.currentTimeMillis() or System.nanoTime() are used for getting ticks. But there is also a Clock instance that is clearly used in other cases.

We should consistently use one or the other. My vote is for Clock.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Re: [jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Posted by Gary Dusbabek <gd...@gmail.com>.
Rajkumar,

In the meantime, please do take a stab at the work. Nobody else will work
on the ticket.

Cheers,

Gary.


On Tue, May 2, 2017 at 8:32 AM, Edward Capriolo <ed...@gmail.com>
wrote:

> I need your Jira id to assign you the ticket. You do need to be assigned to
> start working on it. No one else is looking at that ticket now. You are
> free to take it.
>
> On Mon, May 1, 2017 at 9:41 PM, Rajkumar Natarajan <ra...@gmail.com>
> wrote:
>
> > Hi Edward,
> >
> > I tried to assign this JIRA to my id looks like I don't have permission.
> >
> > I have start watching this Issue. Could you please assign thi JIRA to me.
> >
> > Regards,
> > Rajkumar
> >
> > On Sat, Apr 29, 2017 at 10:14 AM, Edward Capriolo <edlinuxguru@gmail.com
> >
> > wrote:
> >
> > > Feel free. If put a comment on the ticket. I need to two your JIRA id
> to
> > > assign you as a contributor.
> > >
> > > It should be a fairly simple place to get a start.
> > >
> > > Edward
> > >
> > > On Sat, Apr 29, 2017 at 12:17 AM, Rajkumar Natarajan <
> > raj.cs.psg@gmail.com
> > > >
> > > wrote:
> > >
> > > > Hi Team,
> > > >
> > > > I see this JIRA unassigned. Can I assign it to myself and work on it.
> > > > This will be my first commit to any opensource project and I am
> looking
> > > > forward to work with you all guys.
> > > >
> > > > Thanks and Regards,
> > > > Rajkumar
> > > >
> > > > On Tue, Apr 25, 2017 at 9:29 AM, Gary Dusbabek (JIRA) <
> jira@apache.org
> > >
> > > > wrote:
> > > >
> > > > > Gary Dusbabek created GOSSIP-84:
> > > > > -----------------------------------
> > > > >
> > > > >              Summary: Consistently use Clock or System for time.
> > > > >                  Key: GOSSIP-84
> > > > >                  URL: https://issues.apache.org/
> > jira/browse/GOSSIP-84
> > > > >              Project: Gossip
> > > > >           Issue Type: Bug
> > > > >             Reporter: Gary Dusbabek
> > > > >
> > > > >
> > > > > I see a number of cases where System.currentTimeMillis() or
> > > > > System.nanoTime() are used for getting ticks. But there is also a
> > Clock
> > > > > instance that is clearly used in other cases.
> > > > >
> > > > > We should consistently use one or the other. My vote is for Clock.
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > This message was sent by Atlassian JIRA
> > > > > (v6.3.15#6346)
> > > > >
> > > >
> > >
> >
>

Re: [jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Posted by Edward Capriolo <ed...@gmail.com>.
I need your Jira id to assign you the ticket. You do need to be assigned to
start working on it. No one else is looking at that ticket now. You are
free to take it.

On Mon, May 1, 2017 at 9:41 PM, Rajkumar Natarajan <ra...@gmail.com>
wrote:

> Hi Edward,
>
> I tried to assign this JIRA to my id looks like I don't have permission.
>
> I have start watching this Issue. Could you please assign thi JIRA to me.
>
> Regards,
> Rajkumar
>
> On Sat, Apr 29, 2017 at 10:14 AM, Edward Capriolo <ed...@gmail.com>
> wrote:
>
> > Feel free. If put a comment on the ticket. I need to two your JIRA id to
> > assign you as a contributor.
> >
> > It should be a fairly simple place to get a start.
> >
> > Edward
> >
> > On Sat, Apr 29, 2017 at 12:17 AM, Rajkumar Natarajan <
> raj.cs.psg@gmail.com
> > >
> > wrote:
> >
> > > Hi Team,
> > >
> > > I see this JIRA unassigned. Can I assign it to myself and work on it.
> > > This will be my first commit to any opensource project and I am looking
> > > forward to work with you all guys.
> > >
> > > Thanks and Regards,
> > > Rajkumar
> > >
> > > On Tue, Apr 25, 2017 at 9:29 AM, Gary Dusbabek (JIRA) <jira@apache.org
> >
> > > wrote:
> > >
> > > > Gary Dusbabek created GOSSIP-84:
> > > > -----------------------------------
> > > >
> > > >              Summary: Consistently use Clock or System for time.
> > > >                  Key: GOSSIP-84
> > > >                  URL: https://issues.apache.org/
> jira/browse/GOSSIP-84
> > > >              Project: Gossip
> > > >           Issue Type: Bug
> > > >             Reporter: Gary Dusbabek
> > > >
> > > >
> > > > I see a number of cases where System.currentTimeMillis() or
> > > > System.nanoTime() are used for getting ticks. But there is also a
> Clock
> > > > instance that is clearly used in other cases.
> > > >
> > > > We should consistently use one or the other. My vote is for Clock.
> > > >
> > > >
> > > >
> > > > --
> > > > This message was sent by Atlassian JIRA
> > > > (v6.3.15#6346)
> > > >
> > >
> >
>

Re: [jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Posted by Rajkumar Natarajan <ra...@gmail.com>.
Hi Edward,

I tried to assign this JIRA to my id looks like I don't have permission.

I have start watching this Issue. Could you please assign thi JIRA to me.

Regards,
Rajkumar

On Sat, Apr 29, 2017 at 10:14 AM, Edward Capriolo <ed...@gmail.com>
wrote:

> Feel free. If put a comment on the ticket. I need to two your JIRA id to
> assign you as a contributor.
>
> It should be a fairly simple place to get a start.
>
> Edward
>
> On Sat, Apr 29, 2017 at 12:17 AM, Rajkumar Natarajan <raj.cs.psg@gmail.com
> >
> wrote:
>
> > Hi Team,
> >
> > I see this JIRA unassigned. Can I assign it to myself and work on it.
> > This will be my first commit to any opensource project and I am looking
> > forward to work with you all guys.
> >
> > Thanks and Regards,
> > Rajkumar
> >
> > On Tue, Apr 25, 2017 at 9:29 AM, Gary Dusbabek (JIRA) <ji...@apache.org>
> > wrote:
> >
> > > Gary Dusbabek created GOSSIP-84:
> > > -----------------------------------
> > >
> > >              Summary: Consistently use Clock or System for time.
> > >                  Key: GOSSIP-84
> > >                  URL: https://issues.apache.org/jira/browse/GOSSIP-84
> > >              Project: Gossip
> > >           Issue Type: Bug
> > >             Reporter: Gary Dusbabek
> > >
> > >
> > > I see a number of cases where System.currentTimeMillis() or
> > > System.nanoTime() are used for getting ticks. But there is also a Clock
> > > instance that is clearly used in other cases.
> > >
> > > We should consistently use one or the other. My vote is for Clock.
> > >
> > >
> > >
> > > --
> > > This message was sent by Atlassian JIRA
> > > (v6.3.15#6346)
> > >
> >
>

Re: [jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Posted by Edward Capriolo <ed...@gmail.com>.
Feel free. If put a comment on the ticket. I need to two your JIRA id to
assign you as a contributor.

It should be a fairly simple place to get a start.

Edward

On Sat, Apr 29, 2017 at 12:17 AM, Rajkumar Natarajan <ra...@gmail.com>
wrote:

> Hi Team,
>
> I see this JIRA unassigned. Can I assign it to myself and work on it.
> This will be my first commit to any opensource project and I am looking
> forward to work with you all guys.
>
> Thanks and Regards,
> Rajkumar
>
> On Tue, Apr 25, 2017 at 9:29 AM, Gary Dusbabek (JIRA) <ji...@apache.org>
> wrote:
>
> > Gary Dusbabek created GOSSIP-84:
> > -----------------------------------
> >
> >              Summary: Consistently use Clock or System for time.
> >                  Key: GOSSIP-84
> >                  URL: https://issues.apache.org/jira/browse/GOSSIP-84
> >              Project: Gossip
> >           Issue Type: Bug
> >             Reporter: Gary Dusbabek
> >
> >
> > I see a number of cases where System.currentTimeMillis() or
> > System.nanoTime() are used for getting ticks. But there is also a Clock
> > instance that is clearly used in other cases.
> >
> > We should consistently use one or the other. My vote is for Clock.
> >
> >
> >
> > --
> > This message was sent by Atlassian JIRA
> > (v6.3.15#6346)
> >
>

Re: [jira] [Created] (GOSSIP-84) Consistently use Clock or System for time.

Posted by Rajkumar Natarajan <ra...@gmail.com>.
Hi Team,

I see this JIRA unassigned. Can I assign it to myself and work on it.
This will be my first commit to any opensource project and I am looking
forward to work with you all guys.

Thanks and Regards,
Rajkumar

On Tue, Apr 25, 2017 at 9:29 AM, Gary Dusbabek (JIRA) <ji...@apache.org>
wrote:

> Gary Dusbabek created GOSSIP-84:
> -----------------------------------
>
>              Summary: Consistently use Clock or System for time.
>                  Key: GOSSIP-84
>                  URL: https://issues.apache.org/jira/browse/GOSSIP-84
>              Project: Gossip
>           Issue Type: Bug
>             Reporter: Gary Dusbabek
>
>
> I see a number of cases where System.currentTimeMillis() or
> System.nanoTime() are used for getting ticks. But there is also a Clock
> instance that is clearly used in other cases.
>
> We should consistently use one or the other. My vote is for Clock.
>
>
>
> --
> This message was sent by Atlassian JIRA
> (v6.3.15#6346)
>