Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error raised during test execution causing disruption of event dump #5

Closed
MayamaTakeshi opened this issue Nov 12, 2023 · 1 comment
Closed

Comments

@MayamaTakeshi
Copy link
Owner

I dont have a recipe to reproduce this yet, but i noticed it happens that an error can disrupt dump of maching error alert. Need to try to reproduce.

@MayamaTakeshi
Copy link
Owner Author

It seems this is the situation:

                                        </Section>
                                        <Section name="ivr">
                                                <Play>voicemail://group1/voicemail_message.wav</Play>
                                                <GetDigits timeout="20" numDigits="1" retries="1" validDigits="13">
                                                        <Play>system://en-dtmf/urgent_voicemail/ivr_options.wav</Play>
                                                </GetDigits>
                                                <Switch var="Digits">
                                                        <Case val="1">
                                                                <GoTo>ivr</GoTo>
                                                        </Case>
                                                        <Case val="3">
                                                                <Set var="Accepted" val="true"/>
                                                                <Play>system://en-dtmf/urgent_voicemail/you_are_in_charge_of_this_issue.wav</Play>
                                                        </Case>
                                                        <Default>
                                                                <Play>system://en-dtmf/urgent_voicemail/contacting_another_group_member.wav</Play>
                                                        </Default>
                                                </Switch>
                                        </Section>
                                </Response>


14:58:25.691  sleep (urgent_voicemail.ok.js:146) started
14:58:26.652  wait (urgent_voicemail.ok.js:146) timed out while waiting for:
14:58:26.652  [

]
wait (urgent_voicemail.ok.js:146) timed out

Notice that we started a sleep but then we got a timeout for wait (the wait line number is wrong because we get the line number of the current action that is sleep).
So it seems we are failing to stop call clearTimeout for a previous wait.

MayamaTakeshi added a commit that referenced this issue Nov 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant