Bugzilla – Attachment 102648 Details for
Bug 24993
koha-sip --restart is too fast, doesn't always start SIP
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24993: fix increment
Bug-24993-fix-increment.patch (text/plain), 768 bytes, created by
Liz Rea
on 2020-04-09 15:52:10 UTC
(
hide
)
Description:
Bug 24993: fix increment
Filename:
MIME Type:
Creator:
Liz Rea
Created:
2020-04-09 15:52:10 UTC
Size:
768 bytes
patch
obsolete
>From 999b4825aaa0333d89d5766b86e1e8a5d56b0280 Mon Sep 17 00:00:00 2001 >From: Liz Rea <wizzyrea@gmail.com> >Date: Thu, 9 Apr 2020 15:50:04 +0000 >Subject: [PATCH] Bug 24993: fix increment > >Aparently ((i++)) isn't portable, changed for an admittedly uglier >but functional increment. >--- > debian/scripts/koha-sip | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/debian/scripts/koha-sip b/debian/scripts/koha-sip >index 2a4ea791c8..402e9fa2e3 100755 >--- a/debian/scripts/koha-sip >+++ b/debian/scripts/koha-sip >@@ -157,7 +157,7 @@ restart_sip() > > MAX_ITERATION=10 > while is_sip_running ${name}; do >- ((i++)) >+ i=$((i+1)) > if [ $MAX_ITERATION -lt $i ]; then > break > fi >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24993
:
101876
|
102255
|
102280
|
102546
|
102648
|
102682
|
102752
|
102753
|
102754
|
102755
|
102756
|
102823
|
102824
|
102825