Skip to content

Commit 252fdf0

Browse files
committed
tidy
1 parent 5db756e commit 252fdf0

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

app/lib/client/s3/config_objects.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

app/lib/routes/mrtzk.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)