Skip to content

Commit

Permalink
Fix for Correct loading sources, incorrect loading sinks lensesio#75
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishnendu Ghata authored May 16, 2018
1 parent 629301b commit 6d450fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ angularAPP.controller('CreateConnectorCtrl', function ($scope, $rootScope, $http
$http({
method: 'PUT',
url: env.KAFKA_CONNECT() + '/connector-plugins/' + pluginClass + '/config/validate',
data: '{ "connector.class" : "' + pluginClass + '" }',
data: '{ "connector.class" : "' + pluginClass + '", "topic": "" }',
dataType: 'json',
headers: {'Content-Type': 'application/json', 'Accept': 'application/json'}
}).then(function(data){
Expand Down

0 comments on commit 6d450fb

Please sign in to comment.