Skip to content

Commit

Permalink
Fix incorrect driver name in config loading (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
outcatcher authored Nov 13, 2020
1 parent d67f888 commit d637e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion component/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export default Ember.Component.extend(ClusterDriver, {
get(this, 'intl.locale');
this.loadLanguage(lang);

let config = get(this, 'cluster.otcEngineConfig')
let config = get(this, 'cluster.%%DRIVERNAME%%EngineConfig')
let configField = get(this, 'configField')

console.log('Config is ' + JSON.stringify(config))
Expand Down

0 comments on commit d637e23

Please sign in to comment.