Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1568659f authored by Lucas Nussbaum's avatar Lucas Nussbaum
Browse files

[gen/oar-properties] remove useless comments

parent 21bf6b40
No related branches found
No related tags found
1 merge request!67Various fixes (opa property, creation of deploy and besteffort, cosmetic stuff)
...@@ -726,7 +726,6 @@ def ignore_default_keys() ...@@ -726,7 +726,6 @@ def ignore_default_keys()
"slash_21", "slash_21",
"slash_22", "slash_22",
"available_upto", "available_upto",
# "besteffort",
"chunks", "chunks",
"comment", # TODO "comment", # TODO
"core", # This property was created by 'oar_resources_add' "core", # This property was created by 'oar_resources_add'
...@@ -737,7 +736,6 @@ def ignore_default_keys() ...@@ -737,7 +736,6 @@ def ignore_default_keys()
"gpu", # New property taken into account by the new generator "gpu", # New property taken into account by the new generator
"cpuset", "cpuset",
"desktop_computing", "desktop_computing",
# "deploy",
"drain", "drain",
"expiry_date", "expiry_date",
"finaud_decision", "finaud_decision",
...@@ -811,14 +809,14 @@ def run_commands_via_ssh(cmds, options, verbose=true) ...@@ -811,14 +809,14 @@ def run_commands_via_ssh(cmds, options, verbose=true)
# stdout # stdout
channel.on_data { |ch2, data| channel.on_data { |ch2, data|
if verbose if verbose
puts data #if options[:verbose] # ssh cmd output puts data
end end
res += data res += data
} }
# stderr # stderr
channel.on_extended_data do |ch2, type, data| channel.on_extended_data do |ch2, type, data|
if verbose if verbose
puts data #if options[:verbose] # ssh cmd output puts data
end end
res += data res += data
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment