From cb880a9fa932988892ffc9f95d38166e9dec5458 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Fri, 8 Aug 2014 16:01:06 -0400 Subject: [PATCH] 3373: arv-run-pipeline-instance: removed .to_json where objects are supplied to :body_object and will be serialized anyway. --- sdk/cli/bin/arv-run-pipeline-instance | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/cli/bin/arv-run-pipeline-instance b/sdk/cli/bin/arv-run-pipeline-instance index ab3702cafc..0fdf27d96f 100755 --- a/sdk/cli/bin/arv-run-pipeline-instance +++ b/sdk/cli/bin/arv-run-pipeline-instance @@ -244,7 +244,7 @@ class PipelineInstance def self.create(attributes) result = $client.execute(:api_method => $arvados.pipeline_instances.create, :body_object => { - :pipeline_instance => attributes.to_json + :pipeline_instance => attributes }, :authenticated => false, :headers => { @@ -263,7 +263,7 @@ class PipelineInstance :uuid => @pi[:uuid] }, :body_object => { - :pipeline_instance => @attributes_to_update.to_json + :pipeline_instance => @attributes_to_update }, :authenticated => false, :headers => { -- 2.30.2