X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/46b11ba2ed71e2c074e9e6c8f5b9f7a003e7067f..88c382d13b3d6e6f3b03ba0d5139ad9552c3c359:/services/api/config/application.default.yml diff --git a/services/api/config/application.default.yml b/services/api/config/application.default.yml index a61420c450..66916836c2 100644 --- a/services/api/config/application.default.yml +++ b/services/api/config/application.default.yml @@ -8,45 +8,6 @@ # 4. Section in application.default.yml corresponding to RAILS_ENV # 5. Section in application.default.yml called "common" -<% -# If you change any of the code in this block, you'll probably also want -# to update it in Workbench's application.default.yml. -def info_cmd(*args, &block) - IO.popen(args, "r", chdir: Rails.root, err: "/dev/null", &block) -end - -source_version = "" -local_modified = false -if Rails.env == "production" - # Read the version from our package's git-commit.version file, if available. - begin - source_version = IO.read(Rails.root.join("git-commit.version")).strip - rescue Errno::ENOENT - end -end - -if source_version.empty? - begin - status_output = false - info_cmd("git", "status", "-s") do |git_pipe| - git_pipe.each_line do |_| - status_output = true - # Continue reading the pipe so git doesn't get SIGPIPE. - end - end - if $?.success? - info_cmd("git", "log", "-n1", "--format=%H") do |git_pipe| - git_pipe.each_line do |line| - source_version = line.chomp - end - end - local_modified = status_output - end - rescue SystemCallError - end -end -%> - common: ### ### Essential site configuration @@ -227,6 +188,12 @@ common: # for other data types. max_index_database_read: 134217728 + # Maximum number of items to return when responding to a APIs that + # can return partial result sets using limit and offset parameters + # (e.g., *.index, groups.contents). If a request specifies a "limit" + # parameter higher than this value, this value is used instead. + max_items_per_response: 1000 + # When you run the db:delete_old_job_logs task, it will find jobs that # have been finished for at least this many seconds, and delete their # stderr logs from the logs table. @@ -365,10 +332,13 @@ common: default_openid_prefix: https://www.google.com/accounts/o8/id - # source_version - source_version: "<%= source_version[0...8] %>" - local_modified: false + # Override the automatic version string. With the default value of + # false, the version string is read from git-commit.version in + # Rails.root (included in vendor packages) or determined by invoking + # "git log". + source_version: false + crunch_log_partial_line_throttle_period: 5 development: force_ssl: false @@ -384,7 +354,6 @@ development: active_record.auto_explain_threshold_in_seconds: 0.5 assets.compress: false assets.debug: true - local_modified: "<%= local_modified ? '-modified' : '' %>" production: force_ssl: true