Bugzilla – Attachment 102825 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), 945 bytes, created by
Katrin Fischer
on 2020-04-13 12:06:15 UTC
(
hide
)
Description:
Bug 24993: fix increment
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-04-13 12:06:15 UTC
Size:
945 bytes
patch
obsolete
>From 0b61b756fa095cfd37ca4816a9183daf37d655cc 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. > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> > >Signed-off-by: Liz Rea <wizzyrea@gmail.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > 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