File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ def new_config(params)
26
26
def all_configs
27
27
return { } if configs_empty?
28
28
29
- @configs . except ( 'last_id' )
29
+ # TODO: Remove 'last_address' in future versions
30
+ @configs . except ( 'last_id' , 'last_address' )
30
31
end
31
32
32
33
def config ( id )
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ def update
29
29
new_config_build = [ ]
30
30
new_config_build << base_config
31
31
32
- json_config [ 'configs' ] . except ( 'last_id' ) . each_value do |config |
32
+ # TODO: Remove 'last_address' in future versions
33
+ json_config [ 'configs' ] . except ( 'last_id' , 'last_address' ) . each_value do |config |
33
34
# NOTE: We simply skip the config and do not add it to the initial configuration,
34
35
# if the 'enable == false'
35
36
next if config [ 'enable' ] == false
You can’t perform that action at this time.
0 commit comments