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

RunTransaction hangs if the provided function panics #386

Closed
will-arxed opened this issue Feb 21, 2025 · 1 comment · Fixed by #394
Closed

RunTransaction hangs if the provided function panics #386

will-arxed opened this issue Feb 21, 2025 · 1 comment · Fixed by #394
Labels
priority: p2 Moderately-important priority. Fix may not be included in next release. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.

Comments

@will-arxed
Copy link

Reproduction:

package main

import (
	"context"
	"database/sql"
	"fmt"
	"os"

	spannerdriver "github.com/googleapis/go-sql-spanner"
)

func main() {
	ctx := context.Background()

	db, err := sql.Open("spanner", fmt.Sprintf("projects/%s/instances/%s/databases/%s", os.Getenv("PROJECT"), os.Getenv("INSTANCE"), os.Getenv("DATABASE")))
	if err != nil {
		panic(err)
	}

	err = spannerdriver.RunTransaction(ctx, db, &sql.TxOptions{}, func(ctx context.Context, tx *sql.Tx) error {
		fmt.Println("Panicking")
		panic("panic")
	})
	if err != nil {
		panic(err)
	}

	fmt.Println("Done")
}

Expected output:

Panicking
panic: panic

followed by the process exiting.

Actual output:

Panicking

followed by the process hanging indefinitely.

Note that adding a call to tx.Rollback() within the function passed to RunTransaction fixes the hang. It seems that the outstanding transaction is causing the deferred call to conn.Close() within runTransactionWithOptions to hang indefinitely.

@will-arxed will-arxed added priority: p2 Moderately-important priority. Fix may not be included in next release. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns. labels Feb 21, 2025
olavloite added a commit that referenced this issue Mar 11, 2025
Recover any panic that happens in the func that is passed in to
the transaction runner.

Fixes #386
This was referenced Mar 18, 2025
@will-arxed
Copy link
Author

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority: p2 Moderately-important priority. Fix may not be included in next release. type: bug Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant