Skip to content

Commit 2dab1b9

Browse files
Merge pull request #33 from ufcg-lsd/fix-plugin-install
Fix plugin install bug
2 parents 5757b46 + c1d6afd commit 2dab1b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: monitor/api/v10.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ def stop_monitoring(app_id, data):
4545
def install_plugin(data):
4646
plugin = data.get('plugin_source')
4747
source = data.get('install_source')
48-
response, status = api.install_plugin(plugin, source)
48+
response, status = api.install_plugin(source, plugin)
4949
return jsonify(response), status

0 commit comments

Comments
 (0)