Determine host, context, and core from update_endpoint on setConfiguration as well

Created on 1 April 2025, 4 days ago

Problem/Motivation

I am using a Recipe to call setBackendConfig on the server with the update_endpoint and update_token. However, doing so does not set the host, context, or core

Steps to reproduce

Proposed resolution

Implement setConfiguration and set host, context, and core from the update_endpoint value.

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States mglaman WI, USA

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @mglaman
  • πŸ‡ΊπŸ‡ΈUnited States mglaman WI, USA

    I just realized this may not work due to how setBackendConfig works:

      #[ActionMethod(adminLabel: new TranslatableMarkup('Set backend config'), pluralize: FALSE)]
      public function setBackendConfig(array $backend_config) {
        $this->backend_config = $backend_config;
        // In case the backend plugin is already loaded, make sure the configuration
        // stays in sync.
        if ($this->backendPlugin
            && $this->getBackend()->getConfiguration() !== $backend_config) {
          $this->getBackend()->setConfiguration($backend_config);
        }
        return $this;
      }
    

    So the parsing cannot be done unless the instance has been instantiated.

Production build 0.71.5 2024