Skip to content

Commit dbdd51d

Browse files
authored
Job expects keyword arguments (#149)
* Job expects keyword arguments * Bump version
1 parent 9c0f9b4 commit dbdd51d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
test_track_rails_client (8.1.0)
4+
test_track_rails_client (8.1.1)
55
activejob (>= 7.0, < 8.1)
66
activemodel (>= 7.0, < 8.1)
77
faraday (>= 0.8)

app/models/test_track/visitor.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def link_identity!(identity)
7878

7979
# If at first you don't succeed, async it - we may not display 100% consistent UX this time,
8080
# but subsequent requests will be better off
81-
TestTrack::IdentifierCreationJob.perform_later(opts)
81+
TestTrack::IdentifierCreationJob.perform_later(**opts)
8282
end
8383
end
8484

gemfiles/rails_7_0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
test_track_rails_client (8.1.0)
4+
test_track_rails_client (8.1.1)
55
activejob (>= 7.0, < 8.1)
66
activemodel (>= 7.0, < 8.1)
77
faraday (>= 0.8)

gemfiles/rails_7_1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
test_track_rails_client (8.1.0)
4+
test_track_rails_client (8.1.1)
55
activejob (>= 7.0, < 8.1)
66
activemodel (>= 7.0, < 8.1)
77
faraday (>= 0.8)

gemfiles/rails_7_2.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
test_track_rails_client (8.1.0)
4+
test_track_rails_client (8.1.1)
55
activejob (>= 7.0, < 8.1)
66
activemodel (>= 7.0, < 8.1)
77
faraday (>= 0.8)

gemfiles/rails_8_0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
test_track_rails_client (8.1.0)
4+
test_track_rails_client (8.1.1)
55
activejob (>= 7.0, < 8.1)
66
activemodel (>= 7.0, < 8.1)
77
faraday (>= 0.8)
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module TestTrackRailsClient
2-
VERSION = "8.1.0".freeze
2+
VERSION = "8.1.1".freeze
33
end

0 commit comments

Comments
 (0)