-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address part of race condition #149: lower git timeout to 55s
Setting JGit (connect + read timeout) timeout to 55s, and retry max delay to 50s. Hoping that in case of gitlab hangs, a single attempt will be made.
- Loading branch information
1 parent
ef9776f
commit df8d594
Showing
3 changed files
with
93 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@startuml | ||
|
||
|
||
User -> CC: cf create service | ||
activate CC | ||
activate Broker | ||
CC -> Broker: Provision | ||
Broker -> git: templates provision push | ||
Broker -> git: secrets provision push: hang | ||
activate git | ||
User <- CC: provision timeout (60s) | ||
deactivate CC | ||
|
||
User -> CC: cf delete-service | ||
activate CC | ||
activate Broker | ||
CC -> Broker: DeProvision | ||
activate git | ||
Broker -> git: secrets delete missing file & push | ||
deactivate git | ||
deactivate CC | ||
deactivate Broker | ||
|
||
|
||
Broker <- git: secrets provision push: complete | ||
deactivate git | ||
deactivate Broker | ||
|
||
@enduml |