rest-ftp-daemon 0.210.1 → 0.210.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d8aec8b5846bea6d6c295f2ff6ab4c195791057
4
- data.tar.gz: 9af61c3e0e3a9d30584ff12b6cc13b6411c85efd
3
+ metadata.gz: 37f7d8425d04c02fd6bbf0e29e4aa2e68b4a4a88
4
+ data.tar.gz: 55887f0ff182963af1b010bf29529b73b1665d46
5
5
  SHA512:
6
- metadata.gz: 1248cc2cc1d72685aab50bd7484d9def61778db88927f0289554cffe688c7c435efc7826c81e15fcbd5f2e29cc685685c74e543617426deef5fdb645edd805fd
7
- data.tar.gz: e9a1322ec94049fd03b1cd68a19c6a09674295615b02c88a15268eda4df731ba0f7f3d826daab3d93bf88417fb29538a6c45d3c47e2b54c44b2634429d6de777
6
+ metadata.gz: 2d654b0cd05e3acb927cf5c2280c5eb0127d7de59fe6fa69b47eab9e6e0d353fa8f4972054402b28fa4bd67aebffa30fa25ff656edee764a9f4e08f2c9df4a1b
7
+ data.tar.gz: 2ecd5231f676eb178d8c521a03a53d83a21904a221541371d925d508839b8bf63d5cd019958ba062fd2d97f2fdee4154e7de1fcd5ac7704cf83b5ab02fedbfe9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rest-ftp-daemon (0.210.1)
4
+ rest-ftp-daemon (0.210.2)
5
5
  double-bag-ftps
6
6
  facter
7
7
  grape
@@ -22,7 +22,7 @@ require 'rest-ftp-daemon/exceptions'
22
22
  require 'rest-ftp-daemon/helpers'
23
23
  require 'rest-ftp-daemon/uri'
24
24
  require 'rest-ftp-daemon/job_queue'
25
- require 'rest-ftp-daemon/worker'
25
+ # require 'rest-ftp-daemon/worker'
26
26
  require 'rest-ftp-daemon/worker_pool'
27
27
  require 'rest-ftp-daemon/logger'
28
28
  require 'rest-ftp-daemon/logger_pool'
@@ -1,6 +1,6 @@
1
1
  # Terrific constants
2
2
  APP_NAME = "rest-ftp-daemon"
3
- APP_VER = "0.210.1"
3
+ APP_VER = "0.210.2"
4
4
 
5
5
 
6
6
  # Jobs and workers
@@ -77,8 +77,8 @@ module RestFtpDaemon
77
77
 
78
78
  # Prepare the job for processing
79
79
  worker_status :processing
80
- info "job processing"
81
80
  worker_jid job.id
81
+ info "processing"
82
82
  job.wid = Thread.current.thread_variable_get :wid
83
83
 
84
84
  # Processs this job protected by a timeout
@@ -88,7 +88,7 @@ module RestFtpDaemon
88
88
 
89
89
  # Processing done
90
90
  worker_status :done
91
- info "job processed"
91
+ info "done"
92
92
  worker_jid nil
93
93
  job.wid = nil
94
94
 
@@ -29,7 +29,7 @@ defaults: &defaults
29
29
  thin: "/var/log/rftpd-environment-thin.log"
30
30
  queue: "/var/log/rftpd-environment-core.log"
31
31
  api: "/var/log/rftpd-environment-core.log"
32
- workers: "/var/log/rftpd-environment-core.log"
32
+ workers: "/var/log/rftpd-environment-work.log"
33
33
  jobs: "/var/log/rftpd-environment-work.log"
34
34
  notify: "/var/log/rftpd-environment-work.log"
35
35
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-ftp-daemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.210.1
4
+ version: 0.210.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruno MEDICI