dialin

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Merged DEN-15274

Merge branch 'staging' into DEN-15274-hd_dg_test_configuration_setup

Bamboo Commit: generated the code change report

Bamboo Commit: Updated the Copyright section and replaced tabs with 4 spaces

Merge branch 'DEN-15196-DIAL-253' into staging

Merge branch 'staging' into DEN-15196-DIAL-253

Bamboo Commit: generated the code change report

Bamboo Commit: Updated the Copyright section and replaced tabs with 4 spaces

Merge branch 'DEN-15196-DIAL-251' into staging

Correct

Correct

Bamboo Commit: Updated the Copyright section and replaced tabs with 4 spaces

I think I see how it works - thanks for clarifying. In your example, '23' is event id for event status (the new state msg), right? RESOLVED.

I think I see how it works - thanks for clarifying. In your example, '23' is event id for event status (the new state msg), right?
RESOLVED.

I'll defer to John he is the one implementing the test code changes.

I'll defer to John he is the one implementing the test code changes.

Merge branch 'DEN-15196-DIAL-250' into staging

Can you clarify? Events are organized by event id and by time. Currently the usage is looking like this: >>> from dialin import HD >>> hd = HD() >>> hd.events.get_hd_events(23) [] >>> hd.events.ge...

Can you clarify? Events are organized by event id and by time. Currently the usage is looking like this:

>>> from dialin import HD
>>> hd = HD()
>>> hd.events.get_hd_events(23)
[]
>>> hd.events.get_hd_events(23)
[('1684258483', 3, 1, 255)]
>>> hd.events.get_hd_events(23,10)
[('1684258478', 3, 0, 255), ('1684258478', 3, 1, 255), ('1684258479', 4, 0, 255), ('1684258483', 3, 0, 255), ('1684258483', 3, 1, 255)
>>> from dialin.common.hd_defs import HDEventList
>>> hd.events.get_hd_events(HDEventList.HD_EVENT_OPERATION_STATUS.value,10)
[('1684258478', 3, 0, 255), ('1684258478', 3, 1, 255), ('1684258479', 4, 0, 255), ('1684258483', 3, 0, 255), ('1684258483', 3, 1, 255)]

where the user has the option to read the most recent event or a set of the event list.

I'll clarify with V&V. Feedback from john was to change the epoch time to a float.

Looks like you're mixing old and new state data in the dictionary. I would think they would want the new tuples in their own dictionary to have a clean, consistent history of state transitions. Wha...

Looks like you're mixing old and new state data in the dictionary.
I would think they would want the new tuples in their own dictionary to have a clean, consistent history of state transitions.
What does Sarina and her team think about this?

RESOLVED.

RESOLVED.

Bamboo Commit: generated the code change report

Merge branch 'DEN-15196-DIAL-250' into develop

Merge branch 'DEN-15196-DIAL-251' into develop

Merge branch 'DEN-15196-DIAL-253' into develop

Merge branch 'staging' into DEN-15196-DIAL-250

Merge branch 'staging' into DEN-15196-DIAL-251