Skip to content

Commit 6d3db56

Browse files
authored
Removing duplicate output in KubernetesV1 task (#20920)
1 parent c3b8bd9 commit 6d3db56

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Diff for: Tasks/KubernetesV1/src/kubernetes.ts

-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ function executeKubectlCommand(clusterConnection: ClusterConnection, command: st
138138
var result = [];
139139
return commandImplementation.run(clusterConnection, command, (data) => result.push(data))
140140
.fin(function cleanup() {
141-
console.log("commandOutput" + result);
142141
const resultString = result.toString();
143142
const commandOutputLength = resultString.length;
144143
if (commandOutputLength > environmentVariableMaximumSize) {

Diff for: Tasks/KubernetesV1/task.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 1,
1616
"Minor": 254,
17-
"Patch": 2
17+
"Patch": 3
1818
},
1919
"demands": [],
2020
"releaseNotes": "What's new in Version 1.0:<br/>&nbsp;Added new service connection type input for easy selection of Azure AKS cluster.<br/>&nbsp;Replaced output variable input with output variables section that we had added in all tasks.",

Diff for: Tasks/KubernetesV1/task.loc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 1,
1616
"Minor": 254,
17-
"Patch": 2
17+
"Patch": 3
1818
},
1919
"demands": [],
2020
"releaseNotes": "ms-resource:loc.releaseNotes",

0 commit comments

Comments
 (0)