3412: Clean API Collections controller trailing whitespace.
[arvados.git] / services / api / app / controllers / arvados / v1 / schema_controller.rb
index 5d907b89ac45a0fb6e6d1ddd66c86d7f507eb176..4470291504b87b0ef436cc99c63a087dfad632f0 100644 (file)
@@ -367,7 +367,8 @@ class Arvados::V1::SchemaController < ApplicationController
                   method[:parameters][k] = {}
                 end
                 if !method[:parameters][k][:default].nil?
-                  method[:parameters][k][:default] = 'string'
+                  # The JAVA SDK is sensitive to all values being strings
+                  method[:parameters][k][:default] = method[:parameters][k][:default].to_s
                 end
                 method[:parameters][k][:type] ||= 'string'
                 method[:parameters][k][:description] ||= ''