activejob 6.0.4 → 6.1.0.rc1
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 +4 -4
- data/CHANGELOG.md +74 -177
- data/MIT-LICENSE +1 -1
- data/README.md +2 -4
- data/lib/active_job.rb +1 -1
- data/lib/active_job/base.rb +3 -0
- data/lib/active_job/callbacks.rb +44 -4
- data/lib/active_job/core.rb +2 -2
- data/lib/active_job/enqueuing.rb +3 -13
- data/lib/active_job/exceptions.rb +29 -20
- data/lib/active_job/execution.rb +9 -1
- data/lib/active_job/gem_version.rb +3 -3
- data/lib/active_job/instrumentation.rb +37 -0
- data/lib/active_job/log_subscriber.rb +140 -0
- data/lib/active_job/logging.rb +3 -132
- data/lib/active_job/queue_adapter.rb +3 -0
- data/lib/active_job/queue_adapters.rb +5 -1
- data/lib/active_job/queue_adapters/inline_adapter.rb +1 -1
- data/lib/active_job/queue_adapters/sucker_punch_adapter.rb +1 -1
- data/lib/active_job/queue_adapters/test_adapter.rb +6 -2
- data/lib/active_job/queue_name.rb +2 -2
- data/lib/active_job/railtie.rb +4 -0
- data/lib/active_job/serializers.rb +4 -1
- data/lib/active_job/serializers/date_time_serializer.rb +1 -5
- data/lib/active_job/serializers/module_serializer.rb +20 -0
- data/lib/active_job/serializers/object_serializer.rb +1 -1
- data/lib/active_job/serializers/time_object_serializer.rb +13 -0
- data/lib/active_job/serializers/time_serializer.rb +1 -5
- data/lib/active_job/serializers/time_with_zone_serializer.rb +1 -5
- data/lib/active_job/test_helper.rb +79 -80
- metadata +14 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc9b631f7b43e77aa14e8fb65525b51ad82f92f5b0046d15d44c2e5f2429a2aa
|
|
4
|
+
data.tar.gz: a2e8afb6e5295337e82c0f0c3de726cbe11dcedba0f2f34c6c4323170a74dc13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b30c316861f1ae07c363df9184ef9a306d796756429d11978166b3864263cc72ff521c6d27093e17f0e2e850b6921c3dd39702646d6f5b7a5a198221d1e68f4f
|
|
7
|
+
data.tar.gz: 99ed04c52a31748e94edd687fe93a48de660e44d29b5645597a278a97450405f57c28b92d69b98cf0f3ded97711952a58b700b9f90e2ad8dac5148b843920b17
|
data/CHANGELOG.md
CHANGED
|
@@ -1,233 +1,130 @@
|
|
|
1
|
-
## Rails 6.0.
|
|
1
|
+
## Rails 6.1.0.rc1 (November 02, 2020) ##
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* Recover nano precision when serializing `Time`, `TimeWithZone` and `DateTime` objects.
|
|
4
4
|
|
|
5
|
+
*Alan Tan*
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
* Deprecate `config.active_job.return_false_on_aborted_enqueue`.
|
|
7
8
|
|
|
8
|
-
*
|
|
9
|
+
*Rafael Mendonça França*
|
|
9
10
|
|
|
11
|
+
* Return `false` when enqueuing a job is aborted.
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
* No changes.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
## Rails 6.0.3.5 (February 10, 2021) ##
|
|
17
|
-
|
|
18
|
-
* No changes.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## Rails 6.0.3.4 (October 07, 2020) ##
|
|
22
|
-
|
|
23
|
-
* No changes.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## Rails 6.0.3.3 (September 09, 2020) ##
|
|
27
|
-
|
|
28
|
-
* No changes.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## Rails 6.0.3.2 (June 17, 2020) ##
|
|
32
|
-
|
|
33
|
-
* No changes.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## Rails 6.0.3.1 (May 18, 2020) ##
|
|
37
|
-
|
|
38
|
-
* No changes.
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## Rails 6.0.3 (May 06, 2020) ##
|
|
13
|
+
*Rafael Mendonça França*
|
|
42
14
|
|
|
43
15
|
* While using `perform_enqueued_jobs` test helper enqueued jobs must be stored for the later check with
|
|
44
16
|
`assert_enqueued_with`.
|
|
45
17
|
|
|
46
18
|
*Dmitry Polushkin*
|
|
47
19
|
|
|
48
|
-
*
|
|
49
|
-
|
|
50
|
-
*Brad Nauta*, *Wojciech Wnętrzak*
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## Rails 6.0.2.2 (March 19, 2020) ##
|
|
54
|
-
|
|
55
|
-
* No changes.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
## Rails 6.0.2.1 (December 18, 2019) ##
|
|
59
|
-
|
|
60
|
-
* No changes.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## Rails 6.0.2 (December 13, 2019) ##
|
|
64
|
-
|
|
65
|
-
* Allow Sidekiq access to the underlying job class.
|
|
66
|
-
|
|
67
|
-
By having access to the Active Job class, Sidekiq can get access to any `sidekiq_options` which
|
|
68
|
-
have been set on that Active Job type and serialize those options into Redis.
|
|
20
|
+
* `ActiveJob::TestCase#perform_enqueued_jobs` without a block removes performed jobs from the queue.
|
|
69
21
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
*Mike Perham*
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
## Rails 6.0.1 (November 5, 2019) ##
|
|
76
|
-
|
|
77
|
-
* No changes.
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
## Rails 6.0.0 (August 16, 2019) ##
|
|
81
|
-
|
|
82
|
-
* `assert_enqueued_with` and `assert_performed_with` can now test jobs with relative delay.
|
|
83
|
-
|
|
84
|
-
*Vlado Cingel*
|
|
22
|
+
That way the helper can be called multiple times and not perform a job invocation multiple times.
|
|
85
23
|
|
|
24
|
+
```ruby
|
|
25
|
+
def test_jobs
|
|
26
|
+
HelloJob.perform_later("rafael")
|
|
27
|
+
perform_enqueued_jobs # only runs with "rafael"
|
|
28
|
+
HelloJob.perform_later("david")
|
|
29
|
+
perform_enqueued_jobs # only runs with "david"
|
|
30
|
+
end
|
|
31
|
+
```
|
|
86
32
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
* No changes.
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
## Rails 6.0.0.rc1 (April 24, 2019) ##
|
|
93
|
-
|
|
94
|
-
* Use individual execution counters when calculating retry delay.
|
|
95
|
-
|
|
96
|
-
*Patrik Bóna*
|
|
97
|
-
|
|
98
|
-
* Make job argument assertions with `Time`, `ActiveSupport::TimeWithZone`, and `DateTime` work by dropping microseconds. Microsecond precision is lost during serialization.
|
|
99
|
-
|
|
100
|
-
*Gannon McGibbon*
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
## Rails 6.0.0.beta3 (March 11, 2019) ##
|
|
104
|
-
|
|
105
|
-
* No changes.
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
## Rails 6.0.0.beta2 (February 25, 2019) ##
|
|
109
|
-
|
|
110
|
-
* No changes.
|
|
33
|
+
*Étienne Barrié*
|
|
111
34
|
|
|
35
|
+
* `ActiveJob::TestCase#perform_enqueued_jobs` will no longer perform retries:
|
|
112
36
|
|
|
113
|
-
|
|
37
|
+
When calling `perform_enqueued_jobs` without a block, the adapter will
|
|
38
|
+
now perform jobs that are **already** in the queue. Jobs that will end up in
|
|
39
|
+
the queue afterwards won't be performed.
|
|
114
40
|
|
|
115
|
-
|
|
41
|
+
This change only affects `perform_enqueued_jobs` when no block is given.
|
|
116
42
|
|
|
117
|
-
|
|
118
|
-
`config.active_job.return_false_on_aborted_enqueue`.
|
|
43
|
+
*Edouard Chin*
|
|
119
44
|
|
|
120
|
-
|
|
45
|
+
* Add queue name support to Que adapter.
|
|
121
46
|
|
|
122
|
-
*
|
|
47
|
+
*Brad Nauta*, *Wojciech Wnętrzak*
|
|
123
48
|
|
|
124
|
-
|
|
125
|
-
shared between all executions of a job.
|
|
49
|
+
* Don't run `after_enqueue` and `after_perform` callbacks if the callback chain is halted.
|
|
126
50
|
|
|
127
|
-
|
|
51
|
+
class MyJob < ApplicationJob
|
|
52
|
+
before_enqueue { throw(:abort) }
|
|
53
|
+
after_enqueue { # won't enter here anymore }
|
|
54
|
+
end
|
|
128
55
|
|
|
129
|
-
|
|
130
|
-
|
|
56
|
+
`after_enqueue` and `after_perform` callbacks will no longer run if the callback chain is halted.
|
|
57
|
+
This behaviour is a breaking change and won't take effect until Rails 6.2.
|
|
58
|
+
To enable this behaviour in your app right now, you can add in your app's configuration file
|
|
59
|
+
`config.active_job.skip_after_callbacks_if_terminated = true`.
|
|
131
60
|
|
|
132
61
|
*Edouard Chin*
|
|
133
62
|
|
|
134
|
-
*
|
|
63
|
+
* Fix enqueuing and performing incorrect logging message.
|
|
135
64
|
|
|
136
|
-
|
|
65
|
+
Jobs will no longer always log "Enqueued MyJob" or "Performed MyJob" when they actually didn't get enqueued/performed.
|
|
137
66
|
|
|
138
|
-
|
|
139
|
-
|
|
67
|
+
```ruby
|
|
68
|
+
class MyJob < ApplicationJob
|
|
69
|
+
before_enqueue { throw(:abort) }
|
|
70
|
+
end
|
|
140
71
|
|
|
141
|
-
|
|
72
|
+
MyJob.perform_later # Will no longer log "Enqueued MyJob" since job wasn't even enqueued through adapter.
|
|
73
|
+
```
|
|
142
74
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
matches your expectations.
|
|
75
|
+
A new message will be logged in case a job couldn't be enqueued, either because the callback chain was halted or
|
|
76
|
+
because an exception happened during enqueing. (i.e. Redis is down when you try to enqueue your job)
|
|
146
77
|
|
|
147
78
|
*Edouard Chin*
|
|
148
79
|
|
|
149
|
-
*
|
|
150
|
-
|
|
151
|
-
*Ricardo Díaz*
|
|
152
|
-
|
|
153
|
-
* Added `enqueue_retry.active_job`, `retry_stopped.active_job`, and `discard.active_job` hooks.
|
|
80
|
+
* Add an option to disable logging of the job arguments when enqueuing and executing the job.
|
|
154
81
|
|
|
155
|
-
|
|
82
|
+
class SensitiveJob < ApplicationJob
|
|
83
|
+
self.log_arguments = false
|
|
156
84
|
|
|
157
|
-
|
|
85
|
+
def perform(my_sensitive_argument)
|
|
86
|
+
end
|
|
87
|
+
end
|
|
158
88
|
|
|
159
|
-
|
|
89
|
+
When dealing with sensitive arguments as password and tokens it is now possible to configure the job
|
|
90
|
+
to not put the sensitive argument in the logs.
|
|
160
91
|
|
|
161
|
-
*
|
|
162
|
-
without a block should respect passed `:except`, `:only`, and `:queue` options.
|
|
92
|
+
*Rafael Mendonça França*
|
|
163
93
|
|
|
164
|
-
|
|
94
|
+
* Changes in `queue_name_prefix` of a job no longer affects all other jobs.
|
|
165
95
|
|
|
166
|
-
|
|
96
|
+
Fixes #37084.
|
|
167
97
|
|
|
168
|
-
*
|
|
98
|
+
*Lucas Mansur*
|
|
169
99
|
|
|
170
|
-
* Allow `
|
|
171
|
-
|
|
172
|
-
Performs all of the jobs that have been enqueued up to this point in the test.
|
|
100
|
+
* Allow `Class` and `Module` instances to be serialized.
|
|
173
101
|
|
|
174
102
|
*Kevin Deisz*
|
|
175
103
|
|
|
176
|
-
*
|
|
177
|
-
|
|
178
|
-
Improves timing accuracy over the old after callback by including
|
|
179
|
-
time spent writing to the adapter's IO implementation.
|
|
180
|
-
|
|
181
|
-
*Zach Kemp*
|
|
182
|
-
|
|
183
|
-
* Allow call `assert_enqueued_with` with no block.
|
|
184
|
-
|
|
185
|
-
Example:
|
|
186
|
-
```
|
|
187
|
-
def test_assert_enqueued_with
|
|
188
|
-
MyJob.perform_later(1,2,3)
|
|
189
|
-
assert_enqueued_with(job: MyJob, args: [1,2,3], queue: 'low')
|
|
190
|
-
|
|
191
|
-
MyJob.set(wait_until: Date.tomorrow.noon).perform_later
|
|
192
|
-
assert_enqueued_with(job: MyJob, at: Date.tomorrow.noon)
|
|
193
|
-
end
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
*bogdanvlviv*
|
|
104
|
+
* Log potential matches in `assert_enqueued_with` and `assert_performed_with`.
|
|
197
105
|
|
|
198
|
-
*
|
|
106
|
+
*Gareth du Plooy*
|
|
199
107
|
|
|
200
|
-
|
|
108
|
+
* Add `at` argument to the `perform_enqueued_jobs` test helper.
|
|
201
109
|
|
|
202
|
-
*
|
|
110
|
+
*John Crepezzi*, *Eileen Uchitelle*
|
|
203
111
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
*Yuji Yaginuma*
|
|
207
|
-
|
|
208
|
-
* Remove support for Qu gem.
|
|
209
|
-
|
|
210
|
-
Reasons are that the Qu gem wasn't compatible since Rails 5.1,
|
|
211
|
-
gem development was stopped in 2014 and maintainers have
|
|
212
|
-
confirmed its demise. See issue #32273
|
|
213
|
-
|
|
214
|
-
*Alberto Almagro*
|
|
215
|
-
|
|
216
|
-
* Add support for timezones to Active Job.
|
|
217
|
-
|
|
218
|
-
Record what was the current timezone in effect when the job was
|
|
219
|
-
enqueued and then restore when the job is executed in same way
|
|
220
|
-
that the current locale is recorded and restored.
|
|
112
|
+
* `assert_enqueued_with` and `assert_performed_with` can now test jobs with relative delay.
|
|
221
113
|
|
|
222
|
-
*
|
|
114
|
+
*Vlado Cingel*
|
|
223
115
|
|
|
224
|
-
*
|
|
116
|
+
* Add jitter to `ActiveJob::Exceptions.retry_on`.
|
|
225
117
|
|
|
226
|
-
|
|
118
|
+
`ActiveJob::Exceptions.retry_on` now uses a random amount of jitter in order to
|
|
119
|
+
prevent the [thundering herd effect](https://en.wikipedia.org/wiki/Thundering_herd_problem). Defaults to
|
|
120
|
+
15% (represented as 0.15) but overridable via the `:jitter` option when using `retry_on`.
|
|
121
|
+
Jitter is applied when an `Integer`, `ActiveSupport::Duration` or `:exponentially_longer`, is passed to the `wait` argument in `retry_on`.
|
|
227
122
|
|
|
228
|
-
|
|
123
|
+
```ruby
|
|
124
|
+
retry_on(MyError, wait: :exponentially_longer, jitter: 0.30)
|
|
125
|
+
```
|
|
229
126
|
|
|
230
|
-
*
|
|
127
|
+
*Anthony Ross*
|
|
231
128
|
|
|
232
129
|
|
|
233
|
-
Please check [
|
|
130
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activejob/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -95,9 +95,6 @@ their gem, or as a stand-alone gem. For discussion about this see the
|
|
|
95
95
|
following PRs: [23311](https://github.com/rails/rails/issues/23311#issuecomment-176275718),
|
|
96
96
|
[21406](https://github.com/rails/rails/pull/21406#issuecomment-138813484), and [#32285](https://github.com/rails/rails/pull/32285).
|
|
97
97
|
|
|
98
|
-
## Auxiliary gems
|
|
99
|
-
|
|
100
|
-
* [activejob-stats](https://github.com/seuros/activejob-stats)
|
|
101
98
|
|
|
102
99
|
## Download and installation
|
|
103
100
|
|
|
@@ -109,7 +106,8 @@ The latest version of Active Job can be installed with RubyGems:
|
|
|
109
106
|
|
|
110
107
|
Source code can be downloaded as part of the Rails project on GitHub:
|
|
111
108
|
|
|
112
|
-
* https://github.com/rails/rails/tree/
|
|
109
|
+
* https://github.com/rails/rails/tree/master/activejob
|
|
110
|
+
|
|
113
111
|
|
|
114
112
|
## License
|
|
115
113
|
|
data/lib/active_job.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
#--
|
|
4
|
-
# Copyright (c) 2014-
|
|
4
|
+
# Copyright (c) 2014-2020 David Heinemeier Hansson
|
|
5
5
|
#
|
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
7
7
|
# a copy of this software and associated documentation files (the
|
data/lib/active_job/base.rb
CHANGED
|
@@ -8,7 +8,9 @@ require "active_job/enqueuing"
|
|
|
8
8
|
require "active_job/execution"
|
|
9
9
|
require "active_job/callbacks"
|
|
10
10
|
require "active_job/exceptions"
|
|
11
|
+
require "active_job/log_subscriber"
|
|
11
12
|
require "active_job/logging"
|
|
13
|
+
require "active_job/instrumentation"
|
|
12
14
|
require "active_job/timezones"
|
|
13
15
|
require "active_job/translation"
|
|
14
16
|
|
|
@@ -68,6 +70,7 @@ module ActiveJob #:nodoc:
|
|
|
68
70
|
include Callbacks
|
|
69
71
|
include Exceptions
|
|
70
72
|
include Logging
|
|
73
|
+
include Instrumentation
|
|
71
74
|
include Timezones
|
|
72
75
|
include Translation
|
|
73
76
|
|
data/lib/active_job/callbacks.rb
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require "active_support/callbacks"
|
|
4
|
+
require "active_support/core_ext/object/with_options"
|
|
5
|
+
require "active_support/core_ext/module/attribute_accessors"
|
|
4
6
|
|
|
5
7
|
module ActiveJob
|
|
6
8
|
# = Active Job Callbacks
|
|
@@ -27,16 +29,25 @@ module ActiveJob
|
|
|
27
29
|
end
|
|
28
30
|
|
|
29
31
|
included do
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
class_attribute :return_false_on_aborted_enqueue, instance_accessor: false, instance_predicate: false, default: false
|
|
33
|
+
singleton_class.deprecate :return_false_on_aborted_enqueue, :return_false_on_aborted_enqueue=
|
|
34
|
+
cattr_accessor :skip_after_callbacks_if_terminated, instance_accessor: false, default: false
|
|
32
35
|
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
with_options(skip_after_callbacks_if_terminated: skip_after_callbacks_if_terminated) do
|
|
37
|
+
define_callbacks :perform
|
|
38
|
+
define_callbacks :enqueue
|
|
39
|
+
end
|
|
35
40
|
end
|
|
36
41
|
|
|
37
42
|
# These methods will be included into any Active Job object, adding
|
|
38
43
|
# callbacks for +perform+ and +enqueue+ methods.
|
|
39
44
|
module ClassMethods
|
|
45
|
+
def inherited(klass)
|
|
46
|
+
klass.get_callbacks(:enqueue).config[:skip_after_callbacks_if_terminated] = skip_after_callbacks_if_terminated
|
|
47
|
+
klass.get_callbacks(:perform).config[:skip_after_callbacks_if_terminated] = skip_after_callbacks_if_terminated
|
|
48
|
+
super
|
|
49
|
+
end
|
|
50
|
+
|
|
40
51
|
# Defines a callback that will get called right before the
|
|
41
52
|
# job's perform method is executed.
|
|
42
53
|
#
|
|
@@ -91,6 +102,19 @@ module ActiveJob
|
|
|
91
102
|
# end
|
|
92
103
|
# end
|
|
93
104
|
#
|
|
105
|
+
# You can access the return value of the job only if the execution wasn't halted.
|
|
106
|
+
#
|
|
107
|
+
# class VideoProcessJob < ActiveJob::Base
|
|
108
|
+
# around_perform do |job, block|
|
|
109
|
+
# value = block.call
|
|
110
|
+
# puts value # => "Hello World!"
|
|
111
|
+
# end
|
|
112
|
+
#
|
|
113
|
+
# def perform
|
|
114
|
+
# "Hello World!"
|
|
115
|
+
# end
|
|
116
|
+
# end
|
|
117
|
+
#
|
|
94
118
|
def around_perform(*filters, &blk)
|
|
95
119
|
set_callback(:perform, :around, *filters, &blk)
|
|
96
120
|
end
|
|
@@ -154,5 +178,21 @@ module ActiveJob
|
|
|
154
178
|
set_callback(:enqueue, :around, *filters, &blk)
|
|
155
179
|
end
|
|
156
180
|
end
|
|
181
|
+
|
|
182
|
+
private
|
|
183
|
+
def halted_callback_hook(_filter, name) # :nodoc:
|
|
184
|
+
return super unless %i(enqueue perform).include?(name.to_sym)
|
|
185
|
+
callbacks = public_send("_#{name}_callbacks")
|
|
186
|
+
|
|
187
|
+
if !self.class.skip_after_callbacks_if_terminated && callbacks.any? { |c| c.kind == :after }
|
|
188
|
+
ActiveSupport::Deprecation.warn(<<~EOM)
|
|
189
|
+
In Rails 6.2, `after_enqueue`/`after_perform` callbacks no longer run if `before_enqueue`/`before_perform` respectively halts with `throw :abort`.
|
|
190
|
+
To enable this behavior, uncomment the `config.active_job.skip_after_callbacks_if_terminated` config
|
|
191
|
+
in the new 6.1 framework defaults initializer.
|
|
192
|
+
EOM
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
super
|
|
196
|
+
end
|
|
157
197
|
end
|
|
158
198
|
end
|