Skip to content

Commit e7cb1d8

Browse files
committed
Fix render bug
1 parent fa30f07 commit e7cb1d8

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pr_cockpit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- "go.sum"
1515

1616
env:
17-
RUST_VERSION: 1.93.0
17+
RUST_VERSION: 1.95.0
1818
GO_VERSION: '^1.26.0'
1919
CARGO_TERM_COLOR: always
2020
CARGO_INCREMENTAL: "0"

.github/workflows/pr_general.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Pull Request General
44
on: workflow_call
55

66
env:
7-
RUST_VERSION: 1.93.0
7+
RUST_VERSION: 1.95.0
88
GO_VERSION: '^1.26.0'
99
CARGO_TERM_COLOR: always
1010
CARGO_INCREMENTAL: "0"

.github/workflows/pr_stackablectl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- "extra/**"
1515

1616
env:
17-
RUST_VERSION: 1.93.0
17+
RUST_VERSION: 1.95.0
1818
GO_VERSION: '^1.26.0'
1919
CARGO_TERM_COLOR: always
2020
CARGO_INCREMENTAL: "0"

.github/workflows/release_stackablectl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
CARGO_CYCLONEDX_VERSION: 0.5.7
11-
RUST_VERSION: 1.93.0
11+
RUST_VERSION: 1.95.0
1212
CARGO_TERM_COLOR: always
1313
CARGO_INCREMENTAL: "0"
1414
CARGO_PROFILE_DEV_DEBUG: "0"

rust/stackable-cockpit/src/utils/templating.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn render(content: &str, parameters: &HashMap<String, String>) -> TeraResult
2323
tera.register_function("bcrypt", bcrypt);
2424

2525
// Render template
26-
tera.render(content, &context)
26+
tera.render_str(content, &context, false)
2727
}
2828

2929
pub fn random_password(_: Kwargs, _: &State) -> TeraResult<String> {

0 commit comments

Comments
 (0)