canvas_sync 0.22.0.beta3 → 0.22.0.beta5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb3c747b85ec69477a5694b82dfd6841056b315a86322dded93f2fbb5b3aa13c
4
- data.tar.gz: e01aa76838d8391e5289183303623349b6258b4265b3dda6b8bfb4b14cde42ca
3
+ metadata.gz: 5ebf3daf8b5f039ca427bd4f81d9aab1bdeb1ad38d24fcd2be4abd8991d93a30
4
+ data.tar.gz: 676a621e3e4fc0eac6a059a290a9ae7c32d9fe37da700f8d3833e4c98ad91715
5
5
  SHA512:
6
- metadata.gz: 68f8c77089b5fd7784af2d22dbe836c529fc862688fa8c6f42dd3004312ec518d886458c3ca4b28cac08c8d9c823b55893f11a37a05de3eab872fc7a3529bf04
7
- data.tar.gz: 286dd6f0693b320afe381728fbb45de6964fea94d84d0258dffbc608f528684a347831249c13e0f4b3c97ebeb3fa790f4c193fdf096b4532300d3b8158654abe
6
+ metadata.gz: c39d0c02fada82aedbf280e17f5b5c7ac4c80ce9372fb3d13034ed72d6ca2a20760f6b7e1daa0c38e45afaadf8db64b48d45d7c1e559bef8fb48e73acaff3e3e
7
+ data.tar.gz: 89f8c4ed29c80a2b5a8587636741860736690f62bb2a9a86c52318a117152f02dd2fc15741856332eb2e692c36b64396b811861aa2dd8f4b2cbf506407c59ea8
@@ -62,12 +62,15 @@ module CanvasSync::JobUniqueness
62
62
  })
63
63
  end
64
64
 
65
+ CanvasSync::JobUniqueness.logger.debug("Wrapped job in Locking Batch #{batch.bid} for #{key}")
66
+
65
67
  batch.jobs do
66
68
  return blk.call
67
69
  end
68
70
  end
69
71
 
70
72
  def self.internal_batch_callback(batch_status, opts)
73
+ CanvasSync::JobUniqueness.logger.debug("Received Batch(#{batch_status.bid}) callback for #{opts[:lock_strategy]} #{opts[:lock_key]} - #{opts[:event]}")
71
74
  strategy_class = opts[:lock_strategy].constantize
72
75
  lock_context = LockContext.from_serialized(opts[:lock_context])
73
76
  strategy = strategy_class.new(lock_context)
@@ -93,7 +96,8 @@ module CanvasSync::JobUniqueness
93
96
  end
94
97
 
95
98
  def unlock()
96
- locksmith.unlock
99
+ result = locksmith.unlock
100
+ CanvasSync::JobUniqueness.logger.debug { "Unlocked #{key} - (#{result || 'Not Unlocked!'})" }
97
101
  end
98
102
 
99
103
  def locksmith
@@ -1,3 +1,3 @@
1
1
  module CanvasSync
2
- VERSION = "0.22.0.beta3".freeze
2
+ VERSION = "0.22.0.beta5".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canvas_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0.beta3
4
+ version: 0.22.0.beta5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Instructure CustomDev