Skip to content

Commit c04b3bd

Browse files
committed
Try less hard to be smart about metadata, which should help bluegreen do its thing
1 parent 8c5b38e commit c04b3bd

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

  • app/services/hosting_service_adapters

app/services/hosting_service_adapters/fly.rb

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,7 @@ def fly_process_group_for_group(group)
121121

122122
def machine_create_body(group:, type:)
123123
template_machine = instances_state.find_instances(group:).first
124-
config_template =
125-
template_machine.config.merge(
126-
"guest" => guest_config_for_type(type),
127-
"metadata" => {
128-
"fly_process_group" => fly_process_group_for_group(group)
129-
}
130-
)
124+
config_template = template_machine.config.merge("guest" => guest_config_for_type(type))
131125
{ config: config_template, region: template_machine.region }
132126
end
133127

0 commit comments

Comments
 (0)