Possible to specify multiple ignore-info lines ?

I’m trying to run pt-kill 2.2.5 with a configuration file like:

busy-time=60
print
kill
user=myuser
password=mypass
log=/var/log/pt-kill.log
ignore-info=INSERT INTO mynewtable (id, title)\WSELECT id, title\WFROM myoldtable
ignore-info=INSERT INTO mynewtable2 (id, title)\WSELECT id, title\WFROM myoldtable2

But it doesn’t appear to work (my first query was killed after 60 seconds). Is it possible to specify multiple ignore-info lines like this in the config file or command line?

Lee!

ignore-info accepts a regular expression so you can write an or using | to separate queries or something like

ignore-info=INSERT INTO (mynewtable|mynewtable2) \(id, title\)\W*SELECT id, title\W*FROM (myoldtable|myoldtable2)

Regards