Skip to content

Commit

Permalink
Fix missed usage of get_value without key
Browse files Browse the repository at this point in the history
  • Loading branch information
ssciolla committed Apr 16, 2024
1 parent 6b9d35e commit f79125f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def self.create_remote_config(data)
)
when :file_system
FileSystemRemoteConfig.new(
remote_path: settings.get_value("FILE_SYSTEM_REMOTE_PATH")
remote_path: settings.get_value(key: "FILE_SYSTEM_REMOTE_PATH")
)
when :sftp
SftpRemoteConfig.new(
Expand Down

0 comments on commit f79125f

Please sign in to comment.