From d59c274208c3b52655c69c7402be34e2d6856f56 Mon Sep 17 00:00:00 2001 From: Pavel Shpak Date: Sun, 22 Dec 2024 04:37:15 +0200 Subject: [PATCH] Fix typo in configuration initializer method. --- lib/kamal/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kamal/configuration.rb b/lib/kamal/configuration.rb index 827e1204..90c3f8cd 100644 --- a/lib/kamal/configuration.rb +++ b/lib/kamal/configuration.rb @@ -59,7 +59,7 @@ def initialize(raw_config, destination: nil, version: nil, validate: true) # Eager load config to validate it, these are first as they have dependencies later on @servers = Servers.new(config: self) - @registry = Registry.new(config: raw_config, secrets: secrets) + @registry = Registry.new(config: @raw_config, secrets: secrets) @accessories = @raw_config.accessories&.keys&.collect { |name| Accessory.new(name, config: self) } || [] @aliases = @raw_config.aliases&.keys&.to_h { |name| [ name, Alias.new(name, config: self) ] } || {}