dialin

Clone Tools
  • last updated a few minutes ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
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

Ticket didnt specify but a handler has been created to capture the reponse. Thanks!

Ticket didnt specify but a handler has been created to capture the reponse. Thanks!

DIAL-253: created handler for alarm list response.

Bamboo Commit: generated the code change report

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

DIAL-250: Fixed timer objects preventing code from exiting properly

DIAL-251: updated timestamp on operation events.

DIAL-251: event handling for event id 23.

Does Dialin need to capture response too or just proxy the request?

Does Dialin need to capture response too or just proxy the request?