From 770fef491a5b0c388dcccef3723e6a283db6d255 Mon Sep 17 00:00:00 2001 From: Hung Nguyen Date: Thu, 5 Mar 2026 17:23:34 +0700 Subject: [PATCH] GRIF-683: Using default limit parse for yaml file --- .github/workflows/check.yaml | 16 ---------------- VERSION | 2 +- lib/gooddata/rest/connection.rb | 3 --- 3 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index e3938608e..32ac4f5b5 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -23,22 +23,6 @@ jobs: id: changed-files uses: tj-actions/changed-files@v45 - gooddata-ruby-lcm-integration-e2e: - needs: - - prepare-env - uses: ./.github/workflows/lcm-integration-e2e.yaml - secrets: inherit - permissions: - id-token: write - contents: read - if: ${{ needs.prepare-env.outputs.branch == 'master' }} - with: - AUTO_MERGE: false - base_branch: ${{ needs.prepare-env.outputs.branch }} - pr_number: ${{ needs.prepare-env.outputs.pr_number }} - java_version: '11' - ruby_version: 'jruby-9.4.12.1' - gooddata-ruby-lcm-build-pipeline: needs: - gooddata-ruby-lcm-integration-e2e diff --git a/VERSION b/VERSION index 43dc7e517..9aeae61eb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.7.103 +3.7.104 diff --git a/lib/gooddata/rest/connection.rb b/lib/gooddata/rest/connection.rb index 10a9e6e85..33e1fb771 100644 --- a/lib/gooddata/rest/connection.rb +++ b/lib/gooddata/rest/connection.rb @@ -179,9 +179,6 @@ def initialize(opts) # Connect using username and password def connect(username, password, options = {}) - if RUBY_ENGINE == "jruby" && RUBY_ENGINE_VERSION >= '9.4.12.0' - Psych::Parser.code_point_limit = 100 * MB - end server = options[:server] || Helpers::AuthHelper.read_server options = DEFAULT_LOGIN_PAYLOAD.merge(options) headers = options[:headers] || {}