Align argument type to keyword argument for private process method in FetchResourceService (#25189)

This commit is contained in:
S.H 2023-05-30 16:28:01 +09:00 committed by GitHub
parent bdc7548652
commit 8c183a9831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class FetchResourceService < BaseService
private
def process(url, terminal = false)
def process(url, terminal: false)
@url = url
perform_request { |response| process_response(response, terminal) }