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

Declaring a tuple that contains a binding doesn't evaluate #85

Open
ThierryBleau opened this issue Oct 26, 2021 · 1 comment · May be fixed by #90
Open

Declaring a tuple that contains a binding doesn't evaluate #85

ThierryBleau opened this issue Oct 26, 2021 · 1 comment · May be fixed by #90
Assignees
Labels
bug Something isn't working in progress Issue is being resolved

Comments

@ThierryBleau
Copy link
Collaborator

(
    x => x,
    let a = 1
);

Runs forever

Should return

(
  closure,
  ()
)
@ThierryBleau ThierryBleau added the bug Something isn't working label Oct 26, 2021
@cvauclair
Copy link
Contributor

cvauclair commented Oct 26, 2021

@ThierryBleau Note that "running forever" is not really the "true" observed symptom (in majority of cases). What happens is that the Mesh kernel crashes and the Notebook client ends up waiting for a response that never comes. It is not the case that the actual evaluation is taking forever.

Edit: I mention this because otherwise it might lead people to think that the Mesh Engine is hanging (which might point to connection or deadlock bugs) whereas it is actually not.

@cvauclair cvauclair self-assigned this Oct 27, 2021
@cvauclair cvauclair added the in progress Issue is being resolved label Oct 27, 2021
@cvauclair cvauclair linked a pull request Oct 27, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working in progress Issue is being resolved
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants