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 race conditions for attributes #39

Merged
merged 2 commits into from
Sep 5, 2018
Merged

Fix race conditions for attributes #39

merged 2 commits into from
Sep 5, 2018

Conversation

aknysh
Copy link
Member

@aknysh aknysh commented Aug 31, 2018

what

  • Make attributes output a list
  • Fix race conditions when processing attributes

why

  • attributes input is a list, we should keep the same type for the output
  • Due to TF limitations, there was a race condition when merging attributes using the calculated delimiter. The delimiter was always taken from the context even if it was provided in var.delimiter, and just for attributes, the other outputs were OK.

Using the example/complete, this was the output

(note the generated id: charlie+uat+test+fire.water.earth.air, where the delimiter for the attributes was taken from the context even if at the same time it was taken from the input for all other fields)

label2 = {
  attributes = [fire.water.earth.air]
  id = charlie+uat+test+fire.water.earth.air
  name = charlie
  namespace = cloudposse
  stage = test
}
label2_context = {
  attributes = [fire.water.earth.air]
  delimiter = [+]
  environment = [uat]
  label_order = [name environment stage attributes]
  name = [charlie]
  namespace = [cloudposse]
  stage = [test]
  tags_keys = [City Environment Name Namespace Stage]
  tags_values = [London Public charlie+uat+test+fire.water.earth.air cloudposse test]
}
label2_tags = {
  City = London
  Environment = Public
  Name = charlie+uat+test+fire.water.earth.air
  Namespace = cloudposse
  Stage = test
}

After the race condition fix:

label2 = {
  attributes = [fire water earth air]
  id = charlie+uat+test+fire+water+earth+air
  name = charlie
  namespace = cloudposse
  stage = test
}
label2_context = {
  attributes = [fire water earth air]
  delimiter = [+]
  environment = [uat]
  label_order = [name environment stage attributes]
  name = [charlie]
  namespace = [cloudposse]
  stage = [test]
  tags_keys = [City Environment Name Namespace Stage]
  tags_values = [London Public charlie+uat+test+fire+water+earth+air cloudposse test]
}
label2_tags = {
  City = London
  Environment = Public
  Name = charlie+uat+test+fire+water+earth+air
  Namespace = cloudposse
  Stage = test
}

@aknysh aknysh self-assigned this Aug 31, 2018
README.yaml Outdated
@@ -259,6 +259,7 @@ usage: |-
stage = "build"
name = "Winston Churchroom"
attributes = ["fire", "water", "earth", "air"]
delimiter = "."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's keep - as the recommended delimiter

@aknysh aknysh requested a review from osterman September 5, 2018 03:36
@aknysh aknysh merged commit 5d770f4 into master Sep 5, 2018
@aknysh aknysh deleted the fix-race-condition branch September 5, 2018 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants