We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e556e commit 754e672Copy full SHA for 754e672
src/otomi-stack.ts
@@ -248,7 +248,9 @@ export default class OtomiStack {
248
if (await this.repo.fileExists('env/cluster.yaml')) break
249
debug(`Values are not present at ${url}:${branch}`)
250
} catch (e) {
251
- debug(`${e.message.trim()} for command ${JSON.stringify(e.task?.commands)}`)
+ // Remove password from error message
252
+ const safeCommand = JSON.stringify(e.task?.commands).replace(env.GIT_PASSWORD, '****')
253
+ debug(`${e.message.trim()} for command ${JSON.stringify(safeCommand)}`)
254
debug(`Git repository is not ready: ${url}:${branch}`)
255
}
256
const timeoutMs = 10000
0 commit comments