Skip to content

Comments

Backport of backend/http: Refresh state earlier (align with other backends) into v1.14#38060

Closed
github-actions[bot] wants to merge 1 commit intov1.14from
backport/radek/t-backend-http-statemgr/hopelessly-trusted-dassie
Closed

Backport of backend/http: Refresh state earlier (align with other backends) into v1.14#38060
github-actions[bot] wants to merge 1 commit intov1.14from
backport/radek/t-backend-http-statemgr/hopelessly-trusted-dassie

Conversation

@github-actions
Copy link
Contributor

Backport

This PR is auto-generated from #38033 to be assessed for backporting due to the inclusion of the label 1.14-backport.

🚨

Warning automatic cherry-pick of commits failed. If the first commit failed,
you will see a blank no-op commit below. If at least one commit succeeded, you
will see the cherry-picked commits up to, not including, the commit where
the merge conflict occurred.

The person who merged in the original PR is:
@radeksimko
This person should resolve the merge-conflict(s) by either:

  • Manually completing the cherry picks into this branch
  • Creating a new branch and manually cherry-picking all commits being backported

merge conflict error: POST https://api.github.com/repos/hashicorp/terraform/merges: 409 Merge conflict []

The below text is copied from the body of the original PR.


This updates the http backend's behaviour such that it refreshes state prior to returning the StateMgr. In practice this should not have any impact on the end user, perhaps just that errors will be raised a little bit earlier.

This change however enables us to now use that backend to test edge cases and prevent bugs such as #38027

Prior to this patch, the http backend is not actually impacted by the crash reported in #38027

Some backends (azure, gcs, kubernetes) are assumed to be impacted as they implement the exact same behaviour I'm trying to mimic here:

// Grab the value
if err := stateMgr.RefreshState(); err != nil {
return nil, diags.Append(err)
}

// Grab the value
if err := st.RefreshState(); err != nil {
return nil, diags.Append(err)
}

// Grab the value
if err := stateMgr.RefreshState(); err != nil {
return nil, diags.Append(err)
}

Other backends implement the same logic conditionally (only refresh once a previously not-existing state was auto-created) but the bug likely impacts them in a similar way anyway:

// Grab the value
if err := stateMgr.RefreshState(); err != nil {
err = lockUnlock(err)
return nil, diags.Append(err)
}

// Grab the value
if err := stateMgr.RefreshState(); err != nil {
err = lockUnlock(err)
return nil, diags.Append(err)
}

if err := stateMgr.RefreshState(); err != nil {
err = lockUnlock(err)
return nil, diags.Append(err)
}

// Grab the value
if err := stateMgr.RefreshState(); err != nil {
err = lockUnlock(err)
return nil, diags.Append(err)
}

if err := stateMgr.RefreshState(); err != nil {
err = lockUnlock(err)
return nil, diags.Append(err)
}


I'm open to breaking away the last commit and reviewing it alongside #38028 - we cannot really merge this PR on its own without #38028 anyway but having it crash like this in isolation hopefully demonstrates the value.


Overview of commits

@hashicorp-cla-app
Copy link

CLA assistant check

Thank you for your submission! We require that all contributors sign our Contributor License Agreement ("CLA") before we can accept the contribution. Read and sign the agreement

Learn more about why HashiCorp requires a CLA and what the CLA includes


temp seems not to be a GitHub user.
You need a GitHub account to be able to sign the CLA.
If you have already a GitHub account, please add the email address used for this commit to your account.

Have you signed the CLA already but the status is still pending? Recheck it.

1 similar comment
@hashicorp-cla-app
Copy link

CLA assistant check

Thank you for your submission! We require that all contributors sign our Contributor License Agreement ("CLA") before we can accept the contribution. Read and sign the agreement

Learn more about why HashiCorp requires a CLA and what the CLA includes


temp seems not to be a GitHub user.
You need a GitHub account to be able to sign the CLA.
If you have already a GitHub account, please add the email address used for this commit to your account.

Have you signed the CLA already but the status is still pending? Recheck it.

@radeksimko
Copy link
Member

Addressed in #38061

@radeksimko radeksimko closed this Jan 16, 2026
@radeksimko radeksimko deleted the backport/radek/t-backend-http-statemgr/hopelessly-trusted-dassie branch January 16, 2026 11:14
@github-actions
Copy link
Contributor Author

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 16, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant