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

fix: Append EOF instead of newline #239

Merged
merged 3 commits into from
Jul 21, 2020
Merged

fix: Append EOF instead of newline #239

merged 3 commits into from
Jul 21, 2020

Conversation

radeksimko
Copy link
Member

@radeksimko radeksimko commented Jul 17, 2020

Fixes #238

The HCL parser apparently isn't fully ready to parse isolated blocks terminated by newline and so we just append EOF instead of newline, which the parser can safely deal with.

This technically fixes the bug in the sense that CPU no longer spikes, but the completion context is a bit off, so that still needs fixing:

resource "aws_ecr_lifecycle_policy" "policy" {
  for_each = toset(var.repo_name
# here -------------------------^
}

config_block.go:112: completing block: "repo_name", &hcl.Range{Filename:"main.tf", Start:hcl.Pos{Line:2, Column:24, Byte:70}, End:hcl.Pos{Line:2, Column:33, Byte:79}}

Technically we don't support RHS completion yet anyway, so there should be no context being matched, or something, but certainly not variable name being treated as block name/type.

The HCL parser apparently isn't fully ready to parse just blocks
and so we append EOF instead of newline.
@radeksimko radeksimko added the bug Something isn't working label Jul 17, 2020
@radeksimko radeksimko mentioned this pull request Jul 20, 2020
@radeksimko radeksimko marked this pull request as ready for review July 20, 2020 20:08
@radeksimko radeksimko requested a review from a team July 20, 2020 20:08
@radeksimko radeksimko merged commit 78ebfcb into master Jul 21, 2020
@radeksimko radeksimko deleted the b-high-cpu branch July 21, 2020 05:42
@ghost
Copy link

ghost commented Aug 20, 2020

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

@ghost ghost locked and limited conversation to collaborators Aug 20, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

High CPU utilization
2 participants