Skip to content

Commit

Permalink
Fixing gordo-client exception caused by wrong YAML environment value …
Browse files Browse the repository at this point in the history
…serialization (#1058)

* Fixing gordo-client exception caused by wrong YAML environment value serialization

* Double quotes does not work in this case
  • Loading branch information
koropets authored Oct 23, 2020
1 parent 778d75f commit 9c467eb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,8 @@ spec:
- name: train-start-date
value: "{{ machine.dataset.train_start_date }}"
- name: data-provider
value: "{{ machine.dataset.data_provider.to_dict() }}"
value: |
{{ machine.dataset.data_provider.to_dict() | tojson }}
dependencies:
- gordo-server
- gordo-influx
Expand Down

0 comments on commit 9c467eb

Please sign in to comment.