web47core 3.2.3.2 → 3.2.3.4

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: 2b92b99e81e9fe10ed19f01ec7dcdd2d949b23530b42e7b59f9657ec36cb6f99
4
- data.tar.gz: e4def330da1ef103c2bb3fba322b8620957ef7644115ace307d0a0ff89b38a5d
3
+ metadata.gz: 2bb5a2396b2b230990a7675260693737b4ac39a3293665e77ea63b3371c00d83
4
+ data.tar.gz: 7426d92b28365aeeed8a627e7a975bfac1e841ee42bd0e3f916c90a255021ef1
5
5
  SHA512:
6
- metadata.gz: 4a4fd7f1be5bab10b325337cdf8a3504e1fa39ac147a0894a41922ce52cdc6f160f59e800bc68ab3557157daf0a60d0325c2b72e34a3fa858726e9f03f040302
7
- data.tar.gz: 3a2219fac645965efa6c5434571b9b368fb8dfc6ca0ca481b6b7cbc2b9bea38824b10c9d4623deaa8066eae397393ce706de5d75ea84a410dd9a9385466379fe
6
+ metadata.gz: 4cced0fe710de75de29c93dae58c3e704b08daa817eb0c3bfe4bbf0374665a9a6f152b6da072fc087e0219cd7fe2b8a16928098e6e54424984c1e9bd77069cd8
7
+ data.tar.gz: cafe3e73e24829db46d5422f20ad612668235826cd6e3bfe6c4eb6891f3a147df2456015da244d8e6a7e831c56e86e6e64dbc9404a821f07ed849023c26b94e4
@@ -64,6 +64,8 @@ module CoreNavBarHelper
64
64
  end
65
65
 
66
66
  def nav_link(name, action_path, badge_count: 0, classes: [])
67
+ return if classes.include?('d-none')
68
+
67
69
  ac = [classes, 'truncate', 'nav-link'].compact.join(' ')
68
70
  content_tag(:a, href: action_path, class: ac) do
69
71
  concat(content_tag(:span, class: 'nav-link-icon d-md-none d-lg-inline-block') { svg_icon(name) })
@@ -4,8 +4,8 @@
4
4
  = refresh_floating_action_link(SystemConfiguration.configuration, sync_system_configurations_path)
5
5
  .card
6
6
  .card-body
7
- .table-responsive.text-nowrap
8
- %table.table.card-table.border.table-striped
7
+ .table-responsive
8
+ %table.table.border.table-hover.table-vcenter.datatable.card-table.no-wrap.responsive
9
9
  %thead
10
10
  %tr
11
11
  %th Field
@@ -48,7 +48,6 @@ module Cron
48
48
  time_to_next_run
49
49
  ensure
50
50
  check_in
51
- GC.start
52
51
  end
53
52
 
54
53
  def run_cron_jobs
@@ -61,6 +60,8 @@ module Cron
61
60
  now = Time.now.utc
62
61
  Cron::Tab.all.each { |tab| tab.run if tab.time_to_run?(now) }
63
62
  Cron::Emitter.descendants&.each(&:run)
63
+ rescue StandardError => error
64
+ App47Logger.log_error 'Unable to run jobs', error
64
65
  end
65
66
 
66
67
  #
@@ -51,6 +51,8 @@ module ServerProcessAble
51
51
  #
52
52
  def check_in
53
53
  set(last_check_in_at: Time.now.utc)
54
+ rescue StandardError => error
55
+ App47Logger.log_error 'Unable to check in server', error
54
56
  end
55
57
 
56
58
  #
@@ -93,6 +93,7 @@ module Delayed
93
93
  end
94
94
 
95
95
  def worker_host_name
96
+ Rails.logger.debug "worker_host_name - locked_by: #{locked_by}"
96
97
  parts = locked_by.split
97
98
  case parts.count
98
99
  when 2
@@ -105,6 +106,7 @@ module Delayed
105
106
  end
106
107
 
107
108
  def worker_pid
109
+ Rails.logger.debug "worker_pid - locked_by: #{locked_by}"
108
110
  parts = locked_by.split
109
111
  case parts.count
110
112
  when 2
@@ -112,7 +114,7 @@ module Delayed
112
114
  when 3
113
115
  parts[2]
114
116
  else
115
- raise "Unknown locked_by for delayed job #{parts}"
117
+ raise "Unknown worker_pid for delayed job #{parts}"
116
118
  end.split(':').last
117
119
  end
118
120
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '3.2.3.2'
4
+ VERSION = '3.2.3.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web47core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3.2
4
+ version: 3.2.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-03 00:00:00.000000000 Z
11
+ date: 2025-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel