Skip to content

Commit

Permalink
fix: removes stdout add log for what is added (#96)
Browse files Browse the repository at this point in the history
Co-authored-by: jeho <[email protected]>
  • Loading branch information
ElderMatt and j-zimnowoda authored Jan 26, 2024
1 parent f412d81 commit e6b8665
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/operator/gitea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,14 @@ async function execGiteaCLICommand(podNamespace: string, podName: string) {
podName,
'gitea',
execCommand,
process.stdout as stream.Writable,
null,
process.stderr as stream.Writable,
process.stdin as stream.Readable,
false,
(status: k8s.V1Status) => {
console.log('Exited with status:')
console.log(JSON.stringify(status, null, 2))
console.debug('Changed group mapping to: ', teamNamespaceString)
},
)
.catch((error) => {
Expand Down

0 comments on commit e6b8665

Please sign in to comment.