You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use the repl, I can run one command and that's it. After that I get an error.
Steps to reproduce the issue:
run repl
run 2 + 2 (works)
run 2 + 1 (error)
Received results:
cayley> 2 + 2
=> 4
-----------
1 Result
Elapsed time: 1.95 ms
cayley> 2+1
Error: iterator closed at <eval>:1:1(0)
cayley>
Expected results:
It should allow me to run multiple commands
Output of cayley version or commit hash:
ERROR: logging before flag.Parse: E1014 21:20:53.997357 97410 cayley.go:142] The assets flag is deprecated as assets are provided as part of the binary.
Cayley version: 0.7.7
Git commit hash: dcf764f
Environment details:
Backend database: bolt version unknown
The text was updated successfully, but these errors were encountered:
When run a command, the session of gizmo will new a iterator. After the first command done, the iterator will be closed.
The problem occurs at the time of closing iterator:
It will make the vm be interrupted.
3.Then run the second command, the vm will check interrupted.
So, panic.
Description
When I use the repl, I can run one command and that's it. After that I get an error.
Steps to reproduce the issue:
Received results:
Expected results:
It should allow me to run multiple commands
Output of
cayley version
or commit hash:Environment details:
Backend database:
bolt
version unknownThe text was updated successfully, but these errors were encountered: