Skip to content

Commit

Permalink
Set Changelog to ## Unreleased
Browse files Browse the repository at this point in the history
  • Loading branch information
kitchen-porter authored and tomkrouper committed Dec 9, 2024
1 parent 2b525d7 commit ee271f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## 11.1.9 - *2024-12-09*
## Unreleased

- feat: add support for ubuntu 24.04 (noble numbat)

Expand Down
4 changes: 2 additions & 2 deletions test/cookbooks/test/recipes/smoke.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
mysql_config 'replication-slave-1' do
instance 'slave-1'
source 'replication-slave.erb'
variables(server_id: '2', mysql_instance: 'slave-1', port: '3307')
variables(server_id: '2', mysql_instance: 'slave-1')
notifies :restart, 'mysql_service[slave-1]', :immediately
action :create
end
Expand All @@ -63,7 +63,7 @@
mysql_config 'replication-slave-2' do
instance 'slave-2'
source 'replication-slave.erb'
variables(server_id: '3', mysql_instance: 'slave-2', port: '3308')
variables(server_id: '3', mysql_instance: 'slave-2')
notifies :restart, 'mysql_service[slave-2]', :immediately
action :create
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ log_error = /var/log/mysql-<%= @mysql_instance %>/error.log
relay-log = /var/log/mysql-<%= @mysql_instance %>/mysql-relay-bin.log
server-id = <%= @server_id %>
replicate-ignore-db = mysql
port = <%= @port || '3306' %>

0 comments on commit ee271f2

Please sign in to comment.