Skip to content

Instantly share code, notes, and snippets.

@iamer
Created March 15, 2013 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamer/5166396 to your computer and use it in GitHub Desktop.
Save iamer/5166396 to your computer and use it in GitHub Desktop.
Ruote.process_definition 'test_leak' do
sequence do
set 'debug_trace' => 'True'
set 'debug_dump' => 'True'
set 'v:sourceprojects' => []
set 'bla' => ['a','b','c','d','e']
repeat :timeout => '2m', :on_timeout => 'error' do
iterator :on_field => 'bla', :to => 'v:action' do
sequence do
echo '$v:action'
dumper
inc 'v:sourceprojects', :val => '$v:action'
echo '$v:action'
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment