filecluster 0.5.24 → 0.5.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/fc/storage.rb +2 -2
- data/lib/fc/version.rb +1 -1
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 | 
            -
             | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 2 | 
            +
            SHA1:
         | 
| 3 | 
            +
              metadata.gz: 8d483e4b277c06ca5555620bc5ae7f23f4e524d6
         | 
| 4 | 
            +
              data.tar.gz: e7ee71236466346353c3ef599bd3bd29ac47551c
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4520da860c08b62f5815e39625c27c2e95d132dc1f3f135883ad6d83c2f4c8eff494544aa5874f96f0fbc8b578f7404f3f065613e8838bef858c518c70b440f4
         | 
| 7 | 
            +
              data.tar.gz: 402c406c37d2c560df3da5a66f0a3c231c89b89edb542e19468fd2e151c3868ce338b223f3dcf364b14022ae34d28c0270b4b6d3c0610b81dd08935943c1b31c
         | 
    
        data/lib/fc/storage.rb
    CHANGED
    
    | @@ -137,7 +137,7 @@ module FC | |
| 137 137 | 
             
                    raise r if $?.exitstatus != 0
         | 
| 138 138 | 
             
                  else
         | 
| 139 139 | 
             
                    local_path += '/' if File.stat(local_path).directory?
         | 
| 140 | 
            -
                    cmd = "ionice -c 2 -n 7 rsync -e \"ssh -o StrictHostKeyChecking=no\" -a  | 
| 140 | 
            +
                    cmd = "ionice -c 2 -n 7 rsync -e \"ssh -o StrictHostKeyChecking=no\" -a #{FC::Storage.speed_limit_to_rsync_opt(speed_limit)}--rsync-path=\"#{recreate_dirs_cmd} && ionice -c 2 -n 7 rsync\" #{local_path.shellescape} #{self.host}:\"#{dst_path.shellescape}\""
         | 
| 141 141 | 
             
                    r = `#{cmd} 2>&1`
         | 
| 142 142 | 
             
                    raise r if $?.exitstatus != 0
         | 
| 143 143 | 
             
                  end
         | 
| @@ -155,7 +155,7 @@ module FC | |
| 155 155 | 
             
                  r = `#{cmd} 2>&1`
         | 
| 156 156 | 
             
                  src_path += '/' if $?.exitstatus == 0
         | 
| 157 157 |  | 
| 158 | 
            -
                  cmd = "ionice -c 2 -n 7 rsync -e \"ssh -o StrictHostKeyChecking=no\" -a  | 
| 158 | 
            +
                  cmd = "ionice -c 2 -n 7 rsync -e \"ssh -o StrictHostKeyChecking=no\" -a #{FC::Storage.speed_limit_to_rsync_opt(speed_limit)}--rsync-path=\"ionice -c 2 -n 7 rsync\" #{self.host}:\"#{src_path.shellescape}\" #{local_path.shellescape}"
         | 
| 159 159 | 
             
                  r = `#{cmd} 2>&1`
         | 
| 160 160 | 
             
                  raise r if $?.exitstatus != 0
         | 
| 161 161 | 
             
                end
         | 
    
        data/lib/fc/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: filecluster
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.5. | 
| 4 | 
            +
              version: 0.5.25
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - sh
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2020- | 
| 11 | 
            +
            date: 2020-06-30 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: mysql2
         | 
| @@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 217 217 | 
             
                  version: '0'
         | 
| 218 218 | 
             
            requirements: []
         | 
| 219 219 | 
             
            rubyforge_project: 
         | 
| 220 | 
            -
            rubygems_version: 2. | 
| 220 | 
            +
            rubygems_version: 2.6.14
         | 
| 221 221 | 
             
            signing_key: 
         | 
| 222 222 | 
             
            specification_version: 4
         | 
| 223 223 | 
             
            summary: Distributed storage
         |