Found too many current_mirror incs!











up vote
0
down vote

favorite












After upgrading my rdiff backup



rdiff-backup --version
rdiff-backup 1.2.8


i get the following error message:



Exception 'Found too many current_mirror incs!' raised of class '<type 'exceptions.AssertionError'>':


How would i find out which directory is having the issue?










share|improve this question




























    up vote
    0
    down vote

    favorite












    After upgrading my rdiff backup



    rdiff-backup --version
    rdiff-backup 1.2.8


    i get the following error message:



    Exception 'Found too many current_mirror incs!' raised of class '<type 'exceptions.AssertionError'>':


    How would i find out which directory is having the issue?










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      After upgrading my rdiff backup



      rdiff-backup --version
      rdiff-backup 1.2.8


      i get the following error message:



      Exception 'Found too many current_mirror incs!' raised of class '<type 'exceptions.AssertionError'>':


      How would i find out which directory is having the issue?










      share|improve this question















      After upgrading my rdiff backup



      rdiff-backup --version
      rdiff-backup 1.2.8


      i get the following error message:



      Exception 'Found too many current_mirror incs!' raised of class '<type 'exceptions.AssertionError'>':


      How would i find out which directory is having the issue?







      rdiff-backup






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 hours ago

























      asked 5 hours ago









      Wolfgang Fahl

      1716




      1716






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          I filed a bug report https://github.com/sol1/rdiff-backup/issues/37 and found the following work-around. It finds directories with multiple current_mirror entries. The ones with more than two are the culprit.



          In my case two of the three files had a similar timestamp and I removed the one that was one minute older - now the error is gone.



          Example:



          doe@computer:/backup/rbackup$ sudo ./countmirror 
          3 ./company/Admin/rdiff-backup-data


          Script:



          #!/bin/bash
          # https://stackoverflow.com/questions/9157138/recursively-counting-files-in-a-linux-directory

          #
          # get the current mirrors
          # param 1: filter
          #
          get_current_mirrors() {
          local l_filter="$1"
          for f in $(find . -name current_m* ) ; do
          d=$(dirname $f)
          b=$(basename $f)
          case $l_filter in
          "dir") echo $d;;
          "file") echo $f;;
          *) echo $f
          esac
          done
          }

          #get_current_mirrors
          #get_current_mirrors file
          get_current_mirrors dir | sort | uniq --count --repeated





          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f482089%2ffound-too-many-current-mirror-incs%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            I filed a bug report https://github.com/sol1/rdiff-backup/issues/37 and found the following work-around. It finds directories with multiple current_mirror entries. The ones with more than two are the culprit.



            In my case two of the three files had a similar timestamp and I removed the one that was one minute older - now the error is gone.



            Example:



            doe@computer:/backup/rbackup$ sudo ./countmirror 
            3 ./company/Admin/rdiff-backup-data


            Script:



            #!/bin/bash
            # https://stackoverflow.com/questions/9157138/recursively-counting-files-in-a-linux-directory

            #
            # get the current mirrors
            # param 1: filter
            #
            get_current_mirrors() {
            local l_filter="$1"
            for f in $(find . -name current_m* ) ; do
            d=$(dirname $f)
            b=$(basename $f)
            case $l_filter in
            "dir") echo $d;;
            "file") echo $f;;
            *) echo $f
            esac
            done
            }

            #get_current_mirrors
            #get_current_mirrors file
            get_current_mirrors dir | sort | uniq --count --repeated





            share|improve this answer



























              up vote
              0
              down vote













              I filed a bug report https://github.com/sol1/rdiff-backup/issues/37 and found the following work-around. It finds directories with multiple current_mirror entries. The ones with more than two are the culprit.



              In my case two of the three files had a similar timestamp and I removed the one that was one minute older - now the error is gone.



              Example:



              doe@computer:/backup/rbackup$ sudo ./countmirror 
              3 ./company/Admin/rdiff-backup-data


              Script:



              #!/bin/bash
              # https://stackoverflow.com/questions/9157138/recursively-counting-files-in-a-linux-directory

              #
              # get the current mirrors
              # param 1: filter
              #
              get_current_mirrors() {
              local l_filter="$1"
              for f in $(find . -name current_m* ) ; do
              d=$(dirname $f)
              b=$(basename $f)
              case $l_filter in
              "dir") echo $d;;
              "file") echo $f;;
              *) echo $f
              esac
              done
              }

              #get_current_mirrors
              #get_current_mirrors file
              get_current_mirrors dir | sort | uniq --count --repeated





              share|improve this answer

























                up vote
                0
                down vote










                up vote
                0
                down vote









                I filed a bug report https://github.com/sol1/rdiff-backup/issues/37 and found the following work-around. It finds directories with multiple current_mirror entries. The ones with more than two are the culprit.



                In my case two of the three files had a similar timestamp and I removed the one that was one minute older - now the error is gone.



                Example:



                doe@computer:/backup/rbackup$ sudo ./countmirror 
                3 ./company/Admin/rdiff-backup-data


                Script:



                #!/bin/bash
                # https://stackoverflow.com/questions/9157138/recursively-counting-files-in-a-linux-directory

                #
                # get the current mirrors
                # param 1: filter
                #
                get_current_mirrors() {
                local l_filter="$1"
                for f in $(find . -name current_m* ) ; do
                d=$(dirname $f)
                b=$(basename $f)
                case $l_filter in
                "dir") echo $d;;
                "file") echo $f;;
                *) echo $f
                esac
                done
                }

                #get_current_mirrors
                #get_current_mirrors file
                get_current_mirrors dir | sort | uniq --count --repeated





                share|improve this answer














                I filed a bug report https://github.com/sol1/rdiff-backup/issues/37 and found the following work-around. It finds directories with multiple current_mirror entries. The ones with more than two are the culprit.



                In my case two of the three files had a similar timestamp and I removed the one that was one minute older - now the error is gone.



                Example:



                doe@computer:/backup/rbackup$ sudo ./countmirror 
                3 ./company/Admin/rdiff-backup-data


                Script:



                #!/bin/bash
                # https://stackoverflow.com/questions/9157138/recursively-counting-files-in-a-linux-directory

                #
                # get the current mirrors
                # param 1: filter
                #
                get_current_mirrors() {
                local l_filter="$1"
                for f in $(find . -name current_m* ) ; do
                d=$(dirname $f)
                b=$(basename $f)
                case $l_filter in
                "dir") echo $d;;
                "file") echo $f;;
                *) echo $f
                esac
                done
                }

                #get_current_mirrors
                #get_current_mirrors file
                get_current_mirrors dir | sort | uniq --count --repeated






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 3 hours ago

























                answered 5 hours ago









                Wolfgang Fahl

                1716




                1716






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f482089%2ffound-too-many-current-mirror-incs%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    サソリ

                    広島県道265号伴広島線

                    Accessing regular linux commands in Huawei's Dopra Linux