Skip to content

Commit

Permalink
Merge pull request #1785 from MarcusDenker/remove-Transcript-refs
Browse files Browse the repository at this point in the history
replace refs to transcript
  • Loading branch information
Ducasse authored Dec 21, 2023
2 parents 4085d0b + c3fb5be commit 47cefa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Iceberg/IceCredentialsProvider.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ IceCredentialsProvider >> providePlaintextCredentialsTo: credentials [
tries := tries + 1.

tries >= 3 ifTrue: [
Transcript show: 'aborting'; cr.
'aborting' traceCr.
LGitNoCredentialsProvided signal: 'There where already three failed attempts, aborting' ].

tries = 1 & self plaintextCredentials isPresent
Expand All @@ -184,7 +184,7 @@ IceCredentialsProvider >> provideSshAgentCredentialsTo: credentials [
"Just check for tries to ensure we do not enter an infinite cycle in libgit2"
tries := tries + 1.
tries >= 3 ifTrue: [
Transcript show: 'aborting'; cr.
'aborting' traceCr.
LGitNoCredentialsProvided signal: 'No ssh-agent credentials found.' ]
]

Expand All @@ -193,7 +193,7 @@ IceCredentialsProvider >> provideSshCredentialsTo: credentials [
tries := tries + 1.

tries >= 3 ifTrue: [
Transcript show: 'aborting'; cr.
'aborting' traceCr.
LGitNoCredentialsProvided signal: 'There where already three failed attempts, aborting' ].

tries = 1 & self sshCredentials isPresent
Expand Down

0 comments on commit 47cefa4

Please sign in to comment.