You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2017/09/28 20:43:48 UTC

[couchdb] branch add-remsh updated (980741d -> 7c49f25)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a change to branch add-remsh
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    omit 980741d  fix remsh refactoring bug
    omit da4fea1  Remove bashisms in remsh script
     add 2684561  Clean up replicator logs
     add b756b77  Replace replication start multi-line log statement
     new 3e6432c  Remove bashisms in remsh script
     new 7c49f25  fix remsh refactoring bug

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (980741d)
            \
             N -- N -- N   refs/heads/add-remsh (7c49f25)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/couch_replicator_scheduler_job.erl         | 167 +++++++++++++++++----
 1 file changed, 141 insertions(+), 26 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb] 02/02: fix remsh refactoring bug

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch add-remsh
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 7c49f25d104be412c1c70ff7d6eb59a6f61db8ff
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Thu Sep 28 14:33:49 2017 -0400

    fix remsh refactoring bug
---
 rel/overlay/bin/remsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rel/overlay/bin/remsh b/rel/overlay/bin/remsh
index 1c24761..963c16a 100755
--- a/rel/overlay/bin/remsh
+++ b/rel/overlay/bin/remsh
@@ -72,5 +72,5 @@ if [ ! -z "$VERBOSE" ]; then
 fi
 
 exec "$BINDIR/erl" -boot "$ROOTDIR/releases/$APP_VSN/start_clean" \
-    -name remsh$$@$LHOST -remsh $NAME -hidden -setcookie $COOKIE \
+    -name remsh$$@$LHOST -remsh $NODE -hidden -setcookie $COOKIE \
     "$@"

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.

[couchdb] 01/02: Remove bashisms in remsh script

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch add-remsh
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 3e6432c046b6d95968d46dbe88ea886959672612
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Thu Sep 28 13:58:33 2017 -0400

    Remove bashisms in remsh script
---
 rel/overlay/bin/remsh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rel/overlay/bin/remsh b/rel/overlay/bin/remsh
index b409cea..1c24761 100755
--- a/rel/overlay/bin/remsh
+++ b/rel/overlay/bin/remsh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # Licensed under the Apache License, Version 2.0 (the "License"); you may not
 # use this file except in compliance with the License. You may obtain a copy of
@@ -66,7 +66,7 @@ done
 
 shift $((OPTIND - 1))
 
-if [[ ! -z "$VERBOSE" ]]; then
+if [ ! -z "$VERBOSE" ]; then
   # cheap but it works
   set -x
 fi

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.