File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ def get_report(path)
236236 def retrieve_report ( path )
237237 @s3_client . get_object (
238238 bucket : @report_bucket ,
239- key : path ,
239+ key : path
240240 ) . body . read
241241 end
242242
@@ -266,10 +266,10 @@ def get_unit_test_results(path)
266266 k = k . strip . to_sym
267267 v = v . nil? ? '' : v . strip
268268 case k
269- when :Rows , :Size , :Status
270- v = v . to_i
271- when :Time
272- v = v . to_f
269+ when :Rows , :Size , :Status
270+ v = v . to_i
271+ when :Time
272+ v = v . to_f
273273 end
274274 row [ k ] = v
275275 end
Original file line number Diff line number Diff line change @@ -283,12 +283,12 @@ def self.registered(app)
283283 )
284284 end
285285
286- app . get '/ops/show-s3folders/list' do
287- adminui_show_table (
288- AdminUI ::Context . new ( request . path , request . params ) ,
289- UC3 ::FileSystemClient . client . show_folders ( UC3 ::FileSystemClient ::S3ROOTDIR , request . path , request . params )
290- )
291- end
286+ # app.get '/ops/show-s3folders/list' do
287+ # adminui_show_table(
288+ # AdminUI::Context.new(request.path, request.params),
289+ # UC3::FileSystemClient.client.show_folders(UC3::FileSystemClient::S3ROOTDIR, request.path, request.params)
290+ # )
291+ # end
292292
293293 app . post '/ops/show-folders/cleanup' do
294294 UC3 ::FileSystemClient . client . cleanup_ingest_folders
You can’t perform that action at this time.
0 commit comments