Skip to content

Commit

Permalink
Merge pull request #21537 from jrafanie/kill_graphql
Browse files Browse the repository at this point in the history
Drop the graphql plugin and the references to it in the bundler group

(cherry picked from commit b52b2d3)
  • Loading branch information
Fryguy committed Jun 22, 2023
1 parent 159cec7 commit 163d49c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,6 @@ group :rest_api, :manageiq_default do
manageiq_plugin "manageiq-api"
end

group :graphql_api do
# Note, you still need to mount the engine in the UI / rest api processes:
# mount ManageIQ::GraphQL::Engine, :at => '/graphql'
manageiq_plugin "manageiq-graphql"
end

group :scheduler, :manageiq_default do
gem "rufus-scheduler"
end
Expand Down
2 changes: 1 addition & 1 deletion app/models/miq_ui_worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def friendly_name
include MiqWorker::ServiceWorker

def self.bundler_groups
%w[manageiq_default ui_dependencies graphql_api]
%w[manageiq_default ui_dependencies]
end

def self.kill_priority
Expand Down
2 changes: 1 addition & 1 deletion app/models/miq_web_service_worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def self.bundler_groups
# TODO: The api process now looks at the existing UI session as of: https://github.com/ManageIQ/manageiq-api/pull/543
# ui-classic should not be but is serialializing its classes into session, so we need to have access to them for deserialization
# sandboxes;FC:-ActiveSupport::HashWithIndifferentAccess{I"dashboard;FC;q{I"perf_options;FS:0ApplicationController::Performance::Options$typ0:daily_date0:hourly_date0: days0:
%w[manageiq_default ui_dependencies graphql_api]
%w[manageiq_default ui_dependencies]
end

def self.kill_priority
Expand Down

0 comments on commit 163d49c

Please sign in to comment.