Skip to content

Commit

Permalink
Add password to the job for a mysql resource
Browse files Browse the repository at this point in the history
  • Loading branch information
coreation committed Mar 4, 2017
1 parent 0691677 commit ffd32e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Tdt/Core/Definitions/DefinitionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ public function createLinkJob($uri, $input)
$params['extract']['port'] = @$input['mysql_port'];
$params['extract']['query'] = $input['query'];
$params['extract']['username'] = $input['mysql_username'];
$params['extract']['password'] = $input['mysql_password'];
$params['extract']['collation'] = @$input['collation'];
}

Expand Down Expand Up @@ -253,6 +254,7 @@ private function editLinkedJob($uri, $input)
$params['extract']['port'] = @$input['mysql_port'];
$params['extract']['query'] = $input['query'];
$params['extract']['username'] = $input['mysql_username'];
$params['extract']['password'] = $input['mysql_password'];
$params['extract']['collation'] = @$input['collation'];
}

Expand Down

0 comments on commit ffd32e3

Please sign in to comment.