We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a055b21 commit 62f6b76Copy full SHA for 62f6b76
CHANGELOG.md
@@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
11
### Changed
12
13
### Fixed
14
-
+Guarantee that node vars is a dict (Issue ytti/oxidized-web#365) (@ytti)
15
16
## [0.34.2 – 2025-08-01]
17
This release mainly fixes a bug in input/scp that made ssh raise an error when
lib/oxidized/node.rb
@@ -27,7 +27,7 @@ def initialize(opt)
27
@output = resolve_output opt
28
@auth = resolve_auth opt
29
@prompt = resolve_prompt opt
30
- @vars = opt[:vars]
+ @vars = opt[:vars] || {}
31
@stats = Stats.new
32
@retry = 0
33
@repo = resolve_repo opt
0 commit comments