Skip to content

Commit

Permalink
JBR-7939 set max wait to 1 min for jetsign client
Browse files Browse the repository at this point in the history
  • Loading branch information
sshelomentsev authored and mkartashev committed Nov 27, 2024
1 parent 5885c33 commit 3e1f13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jb/project/tools/mac/scripts/codesign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ else
max_attempts=3
attempt=1
while [ $attempt -le $max_attempts ]; do
if "$JETSIGN_CLIENT" -log-format text -denoted-content-type "$contentType" -extensions "$jetSignExtensions" "$pathToBeSigned"; then
if "$JETSIGN_CLIENT" -log-format text -max-wait 1m -denoted-content-type "$contentType" -extensions "$jetSignExtensions" "$pathToBeSigned"; then
break
else
if [ $attempt -eq $max_attempts ]; then
Expand Down

0 comments on commit 3e1f13c

Please sign in to comment.