We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Simple to reproduce. In any transaction set session data to a user and after that clone that user.
struct Session { jwt_token: String, } pub async fn reproduce_stack_bug(user: &mut GooseUser) -> TransactionResult { user.set_session_data(Session { jwt_token: "jwt_token".to_string() }); let mut user_clone = user.clone(); Ok(()) }
Code snippet with infinite recursion:
goose/src/goose.rs
Lines 822 to 843 in 1a8280e
Error:
thread 'tokio-runtime-worker' has overflowed its stack fatal runtime error: stack overflow Aborted (core dumped)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Simple to reproduce. In any transaction set session data to a user and after that clone that user.
Code snippet with infinite recursion:
goose/src/goose.rs
Lines 822 to 843 in 1a8280e
Error:
The text was updated successfully, but these errors were encountered: