Skip to content

Unable to load workspace with frontend che theia plugin #19778

@virtuakazib

Description

@virtuakazib

Describe the bug

A workspace won't load when it includes a custom frontend plugin built using the standard yeoman generator for plugins. The browser logs an error TypeError: Object prototype may only be an Object or null: undefined in che-api-worker-provider.js

I've tracked this down to https://github.com/eclipse-che/che-theia/blob/master/extensions/eclipse-che-theia-plugin-ext/src/plugin/che-sidecar-content-reader.ts. This module is included in the web worker that runs on the browser and it includes an import of fs-extra which adds functionality to node's fs utility and assumes it is running on node. This causes the type error above.

I'm not sure what may be missing in the deployment and configuration of a frontend plugin that will resolve this.

Che version

  • latest
  • nightly
  • other: please specify

Steps to reproduce

  1. Generate a hello world example plugin using the plugin yeoman generator: yo @theia/plugin
  2. Build the plugin: `yarn install && yarn build
  3. Copy the resulting frontend.theia file into a custom che plugin registry
  4. Update the registry index.json and add a meta.yml for the plugin:

meta.yml:

apiVersion: v2
publisher: test
name: frontend
version: latest
type: Theia plugin
displayName: Test Frontend
title: Test Frontend
description: Example frontend plugin
icon: /v3/images/eclipse-che-logo.png
category: Other
spec:
  extensions:
    - relative:extension/resources/frontend.theia

index.json entry:

{
    "id": "test/frontend/latest",
    "description": "Example frontend plugin",
    "displayName": "Example frontend",
    "links": {
      "self": "/v3/plugins/test/frontend/latest"
    },
    "name": "frontend",
    "publisher": "test",
    "type": "Theia plugin",
    "version": "latest"
  },
  1. Build the plugin registry image: docker build -t localhost.io/local/che-plugin-registry:latest -f ./build/dockerfiles/Dockerfile . (The che cluster resource config has already been updated to run this custom registry image)
  2. Create a new workspace with the custom plugin in the dev file:

devfile.yml (based on the NodeJS w/ yarn devfile):

apiVersion: 1.0.0
metadata:
  generateName: nodejs-web-app-
attributes:
  persistVolumes: 'false'
projects:
  - name: react-web-app
    source:
      type: git
      location: 'https://github.com/che-samples/react-web-app.git'
components:
  - type: chePlugin
    id: che-incubator/typescript/latest
  - type: chePlugin
    id: test/frontend/latest
  - type: dockerimage
    alias: nodejs
    image: 'quay.io/eclipse/che-nodejs12-community:7.29.1'
    memoryLimit: 1500Mi
    endpoints:
      - name: nodejs
        port: 3000
    mountSources: true
commands:
  - name: 1. Install Yarn 2
    actions:
      - type: exec
        component: nodejs
        command: yarn set version berry
        workdir: '${CHE_PROJECTS_ROOT}/react-web-app'
  - name: 2. Install all required dependencies
    actions:
      - type: exec
        component: nodejs
        command: yarn install
        workdir: '${CHE_PROJECTS_ROOT}/react-web-app'
  - name: 3. Build the app
    actions:
      - type: exec
        component: nodejs
        command: yarn build
        workdir: '${CHE_PROJECTS_ROOT}/react-web-app'
  - name: 4. Run the app
    actions:
      - type: exec
        component: nodejs
        command: yarn start
        workdir: '${CHE_PROJECTS_ROOT}/react-web-app'
  - name: 5. Launch tests
    actions:
      - type: exec
        component: nodejs
        command: yarn test
        workdir: '${CHE_PROJECTS_ROOT}/react-web-app'
  1. Start the workspace

Expected behavior

The workspace should load and the custom plugin should available. In the case of the hello world example, it should add a command that opens a hello world info window.

Runtime

  • kubernetes (include output of kubectl version)
  • Openshift (include output of oc version)
  • minikube (include output of minikube version and kubectl version)
  • minishift (include output of minishift version and oc version)
  • docker-desktop + K8S (include output of docker version and kubectl version)
  • other: (please specify)

Screenshots

Browser console log error message:
Screen Shot 2021-05-10 at 11 04 50 AM

Installation method

  • chectl
    • provide a full command that was used to deploy Eclipse Che (including the output)
    • provide an output of chectl version command
  • OperatorHub
  • I don't know

Environment

  • my computer
    • Windows
    • Linux
    • macOS
  • Cloud
    • Amazon
    • Azure
    • GCE
    • other (please specify)
  • Dev Sandbox (workspaces.openshift.com)
  • other: please specify

Eclipse Che Logs

Workspace theia logs:

chown: /projects: Operation not permitted
Configuring to accept webviews on '^.+\.webview\..+$' hostname.
2021-05-10 15:38:32.328 root INFO Configuration directory URI: 'file:///home/theia/.theia' 
2021-05-10 15:38:32.349 root WARN Failed to resolve module: @types/body-parser 
2021-05-10 15:38:32.350 root WARN Failed to resolve module: @types/cookie 
2021-05-10 15:38:32.350 root WARN Failed to resolve module: @types/express 
2021-05-10 15:38:32.350 root WARN Failed to resolve module: @types/fs-extra 
2021-05-10 15:38:32.351 root WARN Failed to resolve module: @types/lodash.debounce 
2021-05-10 15:38:32.351 root WARN Failed to resolve module: @types/lodash.throttle 
2021-05-10 15:38:32.351 root WARN Failed to resolve module: @types/react 
2021-05-10 15:38:32.352 root WARN Failed to resolve module: @types/react-dom 
2021-05-10 15:38:32.352 root WARN Failed to resolve module: @types/react-virtualized 
2021-05-10 15:38:32.352 root WARN Failed to resolve module: @types/route-parser 
2021-05-10 15:38:32.352 root WARN Failed to resolve module: @types/safer-buffer 
2021-05-10 15:38:32.353 root WARN Failed to resolve module: @types/ws 
2021-05-10 15:38:32.353 root WARN Failed to resolve module: @types/yargs 
2021-05-10 15:38:32.353 root WARN Failed to resolve module: font-awesome 
2021-05-10 15:38:32.354 root WARN Failed to resolve module: react 
2021-05-10 15:38:32.354 root WARN Failed to resolve module: react-dom 
2021-05-10 15:38:32.354 root WARN Failed to resolve module: react-virtualized 
2021-05-10 15:38:32.354 root WARN Failed to resolve module: @types/base64-arraybuffer 
2021-05-10 15:38:32.354 root WARN Failed to resolve module: @theia/monaco 
2021-05-10 15:38:32.355 root WARN Failed to resolve module: @types/rimraf 
2021-05-10 15:38:32.355 root WARN Failed to resolve module: @types/tar-fs 
2021-05-10 15:38:32.355 root WARN Failed to resolve module: @types/uuid 
2021-05-10 15:38:32.355 root WARN Failed to resolve module: @types/p-queue 
2021-05-10 15:38:32.356 root WARN Failed to resolve module: @types/mime-types 
2021-05-10 15:38:32.356 root WARN Failed to resolve module: @types/diff 
2021-05-10 15:38:32.356 root WARN Failed to resolve module: @types/dompurify 
2021-05-10 15:38:32.356 root WARN Failed to resolve module: @types/mime 
2021-05-10 15:38:32.357 root WARN Failed to resolve module: filenamify 
2021-05-10 15:38:32.357 root WARN Failed to resolve module: @types/request 
2021-05-10 15:38:32.357 root WARN Failed to resolve module: @types/highlight.js 
2021-05-10 15:38:32.357 root WARN Failed to resolve module: @types/markdown-it 
2021-05-10 15:38:32.358 root WARN Failed to resolve module: @types/markdown-it-anchor 
2021-05-10 15:38:32.358 root WARN Backend HostedPluginReader.initialize is slow, took: 122.7 ms 
2021-05-10 15:38:32.358 root WARN Backend CheMiniBrowserEndpoint.configure is slow, took: 165.3 ms 
2021-05-10 15:38:32.359 root WARN Backend MetricsBackendApplicationContribution.onStart is slow, took: 161.6 ms 
2021-05-10 15:38:32.374 root INFO Theia app listening on http://127.0.0.1:3100. 
2021-05-10 15:38:32.385 root WARN The local plugin referenced by local-dir:/home/theia/.theia/plugins does not exist. 
2021-05-10 15:38:32.387 root WARN The local plugin referenced by local-dir:/home/theia/.theia/extensions does not exist. 
2021-05-10 15:38:32.403 root INFO [dev-playground.share-workspace.latest.ucjjisyvch.playground_share_workspace.theia]: trying to decompress into "/tmp/theia-unpacked/dev-playground.share-workspace.latest.ucjjisyvch.playground_share_workspace.theia"... 
2021-05-10 15:38:32.442 root INFO [eclipse_che_github_auth_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_github_auth_plugin.theia"... 
2021-05-10 15:38:32.443 root INFO [eclipse_che_ports_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_ports_plugin.theia"... 
2021-05-10 15:38:32.443 root INFO [eclipse_che_recommendations_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_recommendations_plugin.theia"... 
2021-05-10 15:38:32.449 root INFO [eclipse_che_resource_monitor_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_resource_monitor_plugin.theia"... 
2021-05-10 15:38:32.449 root INFO [eclipse_che_telemetry_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_telemetry_plugin.theia"... 
2021-05-10 15:38:32.449 root INFO [eclipse_che_theia_containers_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_theia_containers_plugin.theia"... 
2021-05-10 15:38:32.450 root INFO [eclipse_che_theia_ssh_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_theia_ssh_plugin.theia"... 
2021-05-10 15:38:32.450 root INFO [eclipse_che_welcome_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_welcome_plugin.theia"... 
2021-05-10 15:38:32.450 root INFO [eclipse_che_workspace_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/eclipse_che_workspace_plugin.theia"... 
2021-05-10 15:38:32.450 root INFO [ext_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/ext_plugin.theia"... 
2021-05-10 15:38:32.450 root INFO [task_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/task_plugin.theia"... 
2021-05-10 15:38:32.451 root INFO [theia_yeoman_plugin.theia]: trying to decompress into "/tmp/theia-unpacked/theia_yeoman_plugin.theia"... 
2021-05-10 15:38:32.750 root WARN Backend CheMiniBrowserEndpoint.onStart is slow, took: 436.3 ms 
2021-05-10 15:38:32.787 root INFO Configuring to accept webviews on 'serverephv1apw-jwtproxy-webviews.192.168.86.21.nip.io' hostname. 
2021-05-10 15:38:34.221 root INFO [eclipse_che_telemetry_plugin.theia]: decompressed 
2021-05-10 15:38:34.300 root INFO [dev-playground.share-workspace.latest.ucjjisyvch.playground_share_workspace.theia]: decompressed 
2021-05-10 15:38:34.300 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/dev-playground.share-workspace.latest.ucjjisyvch.playground_share_workspace.theia
2021-05-10 15:38:34.300 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /plugins/installed.json
2021-05-10 15:38:34.300 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /plugins/sidecars
2021-05-10 15:38:34.342 root ERROR Failed to load plugin dependencies from '/plugins/installed.json' path Params: Error: ENOTDIR: not a directory, open '/plugins/installed.json/package.json'
2021-05-10 15:38:34.346 root ERROR Failed to load plugin dependencies from '/plugins/sidecars' path Params: Error: ENOENT: no such file or directory, open '/plugins/sidecars/package.json'
2021-05-10 15:38:34.347 root INFO [ext_plugin.theia]: decompressed 
2021-05-10 15:38:35.125 root INFO [eclipse_che_theia_containers_plugin.theia]: decompressed 
2021-05-10 15:38:35.675 root INFO [eclipse_che_resource_monitor_plugin.theia]: decompressed 
2021-05-10 15:38:35.778 root INFO [eclipse_che_github_auth_plugin.theia]: decompressed 
2021-05-10 15:38:38.759 root INFO [eclipse_che_ports_plugin.theia]: decompressed 
2021-05-10 15:38:42.204 root INFO [eclipse_che_workspace_plugin.theia]: decompressed 
2021-05-10 15:38:46.470 root INFO [eclipse_che_theia_ssh_plugin.theia]: decompressed 
2021-05-10 15:38:54.809 root INFO [task_plugin.theia]: decompressed 
2021-05-10 15:38:55.975 root ERROR Unable to create Che API REST Client: "CHE_WORKSPACE_TELEMETRY_BACKEND_PORT" is not set. 
2021-05-10 15:38:56.689 root ERROR TypeError: Cannot read property 'logo' of undefined
    at t.getLogo (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:526283)
    at t.renderHeader (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:526165)
    at t.render (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:525986)
    at t.onUpdateRequest (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3709807)
    at t.e.processMessage (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/vendors.1ca70cc3281e556724d0.js:236:7867)
    at f (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/vendors.1ca70cc3281e556724d0.js:126:5049)
    at n (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/vendors.1ca70cc3281e556724d0.js:126:4101)
    at h (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/vendors.1ca70cc3281e556724d0.js:126:5281) 
2021-05-10 15:38:57.065 root ERROR Could not initialize contribution Params: Error: Server rsync not found
    at e.<anonymous> (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2624083)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2623030
    at Object.next (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2623135)
    at a (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2621849)
2021-05-10 15:38:57.527 root WARN Frontend e.configure is slow, took: 330.7 ms 
2021-05-10 15:38:57.532 root WARN Frontend commands.onStart is slow, took: 190.0 ms 
2021-05-10 15:38:57.572 root WARN Failed to obtain keyboard layout map. Params: Error: Failed to execute 'getLayoutMap' on 'Keyboard': getLayoutMap() must be called from a top-level browsing context.
    at e.<anonymous> (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1084604)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1079842
    at Object.next (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1079947)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1078859
    at new Promise (<anonymous>)
    at E3lP.o (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1078604)
    at e.autodetect (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1084404)
    at e.<anonymous> (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1083139)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1079842
    at Object.next (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:1079947)
2021-05-10 15:38:57.817 root WARN Frontend e.onStart is slow, took: 125.5 ms 
2021-05-10 15:38:57.842 root WARN A handler with prefix term  is already registered. 
2021-05-10 15:38:57.848 root WARN Frontend e.onStart is slow, took: 125.6 ms 
2021-05-10 15:38:58.388 root ERROR e.registerSchemas is taking more than 500.0 ms, new schemas are ignored. 
2021-05-10 15:38:58.509 root INFO Storage service initialized. 
2021-05-10 15:38:58.739 root INFO Request storage data for the key 'terminal.integrated.environmentVariableCollections'. 
2021-05-10 15:38:58.750 root INFO Request storage data for the key 'commands'. 
2021-05-10 15:38:59.282 root INFO Request storage data for the key 'editor-navigation-contribution'. 
2021-05-10 15:39:03.321 root WARN Frontend e.onStart is slow, took: 3621.2 ms 
2021-05-10 15:39:03.345 root INFO Request storage data for the key 'tasks'. 
2021-05-10 15:39:03.370 root INFO Request storage data for the key 'breakpoints'. 
2021-05-10 15:39:03.375 root INFO Request storage data for the key 'debug.configurations'. 
2021-05-10 15:39:04.106 root INFO Request storage data for the key 'debug:watch'. 
2021-05-10 15:39:04.483 root WARN Frontend t.onStart is slow, took: 2609.5 ms 
2021-05-10 15:39:05.254 root WARN Frontend e.onStart is slow, took: 774.8 ms 
2021-05-10 15:39:05.261 root INFO Changed application state from 'init' to 'started_contributions'. 
2021-05-10 15:39:05.292 root INFO Changed application state from 'started_contributions' to 'attached_shell'. 
2021-05-10 15:39:05.339 root INFO >>> Restoring the layout state... 
2021-05-10 15:39:05.343 root INFO Request storage data for the key 'layout'. 
2021-05-10 15:39:05.454 root INFO <<< Nothing to restore. 
2021-05-10 15:39:05.899 root WARN Frontend t.initializeLayout is slow, took: 254.7 ms 
2021-05-10 15:39:06.344 root INFO Changed application state from 'attached_shell' to 'initialized_layout'. 
2021-05-10 15:39:06.348 root INFO Setup shell layout persistence scheduler. 
2021-05-10 15:39:08.336 root INFO Changed application state from 'initialized_layout' to 'ready'. 
2021-05-10 15:39:10.311 root INFO >>> Storing the layout... 
2021-05-10 15:39:10.546 root INFO Write storage data for the key 'layout'. 
2021-05-10 15:39:10.759 root INFO <<< The layout has been successfully stored. 
2021-05-10 15:39:12.000 root INFO [eclipse_che_recommendations_plugin.theia]: decompressed 
2021-05-10 15:39:17.988 root INFO [eclipse_che_welcome_plugin.theia]: decompressed 
2021-05-10 15:39:36.379 root INFO [theia_yeoman_plugin.theia]: decompressed 
2021-05-10 15:39:36.384 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_github_auth_plugin.theia
2021-05-10 15:39:36.384 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_ports_plugin.theia
2021-05-10 15:39:36.384 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_recommendations_plugin.theia
2021-05-10 15:39:36.384 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_resource_monitor_plugin.theia
2021-05-10 15:39:36.384 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_telemetry_plugin.theia
2021-05-10 15:39:36.385 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_theia_containers_plugin.theia
2021-05-10 15:39:36.385 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_theia_ssh_plugin.theia
2021-05-10 15:39:36.385 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_welcome_plugin.theia
2021-05-10 15:39:36.385 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/eclipse_che_workspace_plugin.theia
2021-05-10 15:39:36.386 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/ext_plugin.theia
2021-05-10 15:39:36.386 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/task_plugin.theia
2021-05-10 15:39:36.386 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /tmp/theia-unpacked/theia_yeoman_plugin.theia
2021-05-10 15:39:36.386 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-bat
2021-05-10 15:39:36.386 root INFO Resolved "vscode-builtin-bat" to a VS Code extension "bat@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.386 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-clojure
2021-05-10 15:39:36.387 root INFO Resolved "vscode-builtin-clojure" to a VS Code extension "clojure@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.387 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-coffeescript
2021-05-10 15:39:36.387 root INFO Resolved "vscode-builtin-coffeescript" to a VS Code extension "coffeescript@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.387 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-configuration-editing
2021-05-10 15:39:36.387 root INFO Resolved "vscode-builtin-configuration-editing" to a VS Code extension "configuration-editing@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.387 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-cpp
2021-05-10 15:39:36.387 root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.388 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-csharp
2021-05-10 15:39:36.388 root INFO Resolved "vscode-builtin-csharp" to a VS Code extension "csharp@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.388 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-css
2021-05-10 15:39:36.388 root INFO Resolved "vscode-builtin-css" to a VS Code extension "css@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.388 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-css-language-features
2021-05-10 15:39:36.388 root INFO Resolved "vscode-builtin-css-language-features" to a VS Code extension "css-language-features@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.388 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-debug-auto-launch
2021-05-10 15:39:36.388 root INFO Resolved "vscode-builtin-debug-auto-launch" to a VS Code extension "debug-auto-launch@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.389 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-docker
2021-05-10 15:39:36.389 root INFO Resolved "vscode-builtin-docker" to a VS Code extension "docker@1.48.0" with engines: Params: [object Object]
2021-05-10 15:39:36.389 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-emmet
2021-05-10 15:39:36.389 root INFO Resolved "vscode-builtin-emmet" to a VS Code extension "emmet@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.389 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-fsharp
2021-05-10 15:39:36.389 root INFO Resolved "vscode-builtin-fsharp" to a VS Code extension "fsharp@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.389 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-go
2021-05-10 15:39:36.389 root INFO Resolved "vscode-builtin-go" to a VS Code extension "go@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.390 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-groovy
2021-05-10 15:39:36.390 root INFO Resolved "vscode-builtin-groovy" to a VS Code extension "groovy@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.390 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-grunt
2021-05-10 15:39:36.390 root INFO Resolved "vscode-builtin-grunt" to a VS Code extension "grunt@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.390 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-gulp
2021-05-10 15:39:36.390 root INFO Resolved "vscode-builtin-gulp" to a VS Code extension "gulp@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.390 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-handlebars
2021-05-10 15:39:36.390 root INFO Resolved "vscode-builtin-handlebars" to a VS Code extension "handlebars@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.390 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-hlsl
2021-05-10 15:39:36.390 root INFO Resolved "vscode-builtin-hlsl" to a VS Code extension "hlsl@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.391 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-html
2021-05-10 15:39:36.391 root INFO Resolved "vscode-builtin-html" to a VS Code extension "html@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.391 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-html-language-features
2021-05-10 15:39:36.391 root INFO Resolved "vscode-builtin-html-language-features" to a VS Code extension "html-language-features@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.391 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-icon-theme-seti
2021-05-10 15:39:36.391 root INFO Resolved "vscode-builtin-icon-theme-seti" to a VS Code extension "vscode-theme-seti@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.391 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-ini
2021-05-10 15:39:36.391 root INFO Resolved "vscode-builtin-ini" to a VS Code extension "ini@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.392 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-jake
2021-05-10 15:39:36.392 root INFO Resolved "vscode-builtin-jake" to a VS Code extension "jake@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.392 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-java
2021-05-10 15:39:36.392 root INFO Resolved "vscode-builtin-java" to a VS Code extension "java@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.392 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-javascript
2021-05-10 15:39:36.392 root INFO Resolved "vscode-builtin-javascript" to a VS Code extension "javascript@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.392 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-js-debug
2021-05-10 15:39:36.392 root INFO Resolved "vscode-builtin-js-debug" to a VS Code extension "js-debug@1.49.8" with engines: Params: [object Object]
2021-05-10 15:39:36.393 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-json
2021-05-10 15:39:36.393 root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.393 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-json-language-features
2021-05-10 15:39:36.393 root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.393 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-less
2021-05-10 15:39:36.393 root INFO Resolved "vscode-builtin-less" to a VS Code extension "less@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.393 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-log
2021-05-10 15:39:36.393 root INFO Resolved "vscode-builtin-log" to a VS Code extension "log@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.393 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-lua
2021-05-10 15:39:36.393 root INFO Resolved "vscode-builtin-lua" to a VS Code extension "lua@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.394 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-make
2021-05-10 15:39:36.394 root INFO Resolved "vscode-builtin-make" to a VS Code extension "make@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.394 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-markdown
2021-05-10 15:39:36.394 root INFO Resolved "vscode-builtin-markdown" to a VS Code extension "markdown@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.394 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-markdown-language-features
2021-05-10 15:39:36.394 root INFO Resolved "vscode-builtin-markdown-language-features" to a VS Code extension "markdown-language-features@1.39.2" with engines: Params: [object Object]
2021-05-10 15:39:36.394 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-merge-conflicts
2021-05-10 15:39:36.394 root INFO Resolved "vscode-builtin-merge-conflicts" to a VS Code extension "merge-conflict@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.395 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-npm
2021-05-10 15:39:36.395 root INFO Resolved "vscode-builtin-npm" to a VS Code extension "npm@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.395 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-objective-c
2021-05-10 15:39:36.395 root INFO Resolved "vscode-builtin-objective-c" to a VS Code extension "objective-c@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.395 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-perl
2021-05-10 15:39:36.395 root INFO Resolved "vscode-builtin-perl" to a VS Code extension "perl@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.395 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-php
2021-05-10 15:39:36.395 root INFO Resolved "vscode-builtin-php" to a VS Code extension "php@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.395 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-powershell
2021-05-10 15:39:36.396 root INFO Resolved "vscode-builtin-powershell" to a VS Code extension "powershell@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.396 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-pug
2021-05-10 15:39:36.396 root INFO Resolved "vscode-builtin-pug" to a VS Code extension "pug@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.396 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-python
2021-05-10 15:39:36.396 root INFO Resolved "vscode-builtin-python" to a VS Code extension "python@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.396 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-r
2021-05-10 15:39:36.396 root INFO Resolved "vscode-builtin-r" to a VS Code extension "r@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.396 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-razor
2021-05-10 15:39:36.396 root INFO Resolved "vscode-builtin-razor" to a VS Code extension "razor@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.397 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-ruby
2021-05-10 15:39:36.397 root INFO Resolved "vscode-builtin-ruby" to a VS Code extension "ruby@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.397 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-rust
2021-05-10 15:39:36.397 root INFO Resolved "vscode-builtin-rust" to a VS Code extension "rust@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.397 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-scss
2021-05-10 15:39:36.398 root INFO Resolved "vscode-builtin-scss" to a VS Code extension "scss@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.398 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-shaderlab
2021-05-10 15:39:36.398 root INFO Resolved "vscode-builtin-shaderlab" to a VS Code extension "shaderlab@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.398 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-shellscript
2021-05-10 15:39:36.398 root INFO Resolved "vscode-builtin-shellscript" to a VS Code extension "shellscript@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.398 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-sql
2021-05-10 15:39:36.398 root INFO Resolved "vscode-builtin-sql" to a VS Code extension "sql@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.398 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-swift
2021-05-10 15:39:36.398 root INFO Resolved "vscode-builtin-swift" to a VS Code extension "swift@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.398 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-abyss
2021-05-10 15:39:36.399 root INFO Resolved "vscode-builtin-theme-abyss" to a VS Code extension "theme-abyss@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.399 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-defaults
2021-05-10 15:39:36.399 root INFO Resolved "vscode-builtin-theme-defaults" to a VS Code extension "theme-defaults@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.399 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-kimbie-dark
2021-05-10 15:39:36.399 root INFO Resolved "vscode-builtin-theme-kimbie-dark" to a VS Code extension "theme-kimbie-dark@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.399 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-monokai
2021-05-10 15:39:36.399 root INFO Resolved "vscode-builtin-theme-monokai" to a VS Code extension "theme-monokai@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.399 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-monokai-dimmed
2021-05-10 15:39:36.400 root INFO Resolved "vscode-builtin-theme-monokai-dimmed" to a VS Code extension "theme-monokai-dimmed@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.400 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-quietlight
2021-05-10 15:39:36.400 root INFO Resolved "vscode-builtin-theme-quietlight" to a VS Code extension "theme-quietlight@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.400 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-red
2021-05-10 15:39:36.400 root INFO Resolved "vscode-builtin-theme-red" to a VS Code extension "theme-red@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.400 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-solarized-dark
2021-05-10 15:39:36.400 root INFO Resolved "vscode-builtin-theme-solarized-dark" to a VS Code extension "theme-solarized-dark@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.400 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-solarized-light
2021-05-10 15:39:36.400 root INFO Resolved "vscode-builtin-theme-solarized-light" to a VS Code extension "theme-solarized-light@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.401 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-theme-tomorrow-night-blue
2021-05-10 15:39:36.401 root INFO Resolved "vscode-builtin-theme-tomorrow-night-blue" to a VS Code extension "theme-tomorrow-night-blue@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.401 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-typescript
2021-05-10 15:39:36.401 root INFO Resolved "vscode-builtin-typescript" to a VS Code extension "typescript@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.401 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-vb
2021-05-10 15:39:36.401 root INFO Resolved "vscode-builtin-vb" to a VS Code extension "vb@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.401 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-xml
2021-05-10 15:39:36.401 root INFO Resolved "vscode-builtin-xml" to a VS Code extension "xml@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.402 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-builtin-yaml
2021-05-10 15:39:36.403 root INFO Resolved "vscode-builtin-yaml" to a VS Code extension "yaml@1.44.2" with engines: Params: [object Object]
2021-05-10 15:39:36.403 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-git
2021-05-10 15:39:36.403 root INFO Resolved "vscode-git" to a VS Code extension "git@1.49.3" with engines: Params: [object Object]
2021-05-10 15:39:36.403 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-github
2021-05-10 15:39:36.403 root INFO Resolved "vscode-github" to a VS Code extension "github@1.50.1" with engines: Params: [object Object]
2021-05-10 15:39:36.403 root INFO PluginTheiaDirectoryHandler: accepting plugin with path Params: /default-theia-plugins/vscode-references-view
2021-05-10 15:39:36.403 root INFO Resolved "vscode-references-view" to a VS Code extension "references-view@0.0.47" with engines: Params: [object Object]
2021-05-10 15:39:36.562 root INFO Deploying backend plugin "@eclipse-che/github-auth-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_github_auth_plugin.theia/lib/github-auth-plugin.js" 
2021-05-10 15:39:36.563 root INFO Deploying frontend plugin "playground-share-workspace@0.0.1" from "dist/playground-share-workspace.js" 
2021-05-10 15:39:36.564 root INFO Deploying backend plugin "@eclipse-che/ports-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_ports_plugin.theia/lib/main.js" 
2021-05-10 15:39:36.566 root INFO Deploying backend plugin "@eclipse-che/recommendations-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_recommendations_plugin.theia/lib/plugin.js" 
2021-05-10 15:39:36.567 root INFO Deploying backend plugin "@eclipse-che/resource-monitor-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_resource_monitor_plugin.theia/lib/resource-monitor-plugin.js" 
2021-05-10 15:39:36.567 root INFO Deploying backend plugin "@eclipse-che/telemetry-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_telemetry_plugin.theia/lib/telemetry-plugin.js" 
2021-05-10 15:39:36.568 root INFO Deploying backend plugin "@eclipse-che/theia-containers-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_theia_containers_plugin.theia/lib/containers-plugin.js" 
2021-05-10 15:39:36.569 root INFO Deploying backend plugin "@eclipse-che/theia-ssh-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_theia_ssh_plugin.theia/lib/ssh-plugin.js" 
2021-05-10 15:39:36.570 root INFO Deploying backend plugin "@eclipse-che/welcome-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_welcome_plugin.theia/lib/welcome-plugin.js" 
2021-05-10 15:39:36.571 root INFO Deploying backend plugin "@eclipse-che/workspace-plugin@7.29.0" from "/tmp/theia-unpacked/eclipse_che_workspace_plugin.theia/lib/workspace-plugin.js" 
2021-05-10 15:39:36.572 root INFO Deploying backend plugin "ext-plugin@7.29.0" from "/tmp/theia-unpacked/ext_plugin.theia/lib/ext-plugin.js" 
2021-05-10 15:39:36.572 root INFO Deploying backend plugin "task-plugin@7.29.0" from "/tmp/theia-unpacked/task_plugin.theia/lib/task-plugin-backend.js" 
2021-05-10 15:39:36.573 root INFO Deploying backend plugin "@theia/yeoman-plugin@0.0.1-1578930705" from "/tmp/theia-unpacked/theia_yeoman_plugin.theia/lib/theia-yeoman-backend-plugin.js" 
2021-05-10 15:39:36.581 root INFO Deploying backend plugin "bat@1.44.2" from "/default-theia-plugins/vscode-builtin-bat/extension" 
2021-05-10 15:39:36.584 root INFO Deploying backend plugin "clojure@1.44.2" from "/default-theia-plugins/vscode-builtin-clojure/extension" 
2021-05-10 15:39:36.589 root INFO Deploying backend plugin "coffeescript@1.44.2" from "/default-theia-plugins/vscode-builtin-coffeescript/extension" 
2021-05-10 15:39:36.590 root INFO Deploying backend plugin "configuration-editing@1.44.2" from "/default-theia-plugins/vscode-builtin-configuration-editing/extension/dist/extension" 
2021-05-10 15:39:36.677 root INFO Deploying backend plugin "cpp@1.44.2" from "/default-theia-plugins/vscode-builtin-cpp/extension" 
2021-05-10 15:39:36.685 root INFO Deploying backend plugin "csharp@1.44.2" from "/default-theia-plugins/vscode-builtin-csharp/extension" 
2021-05-10 15:39:36.691 root INFO Deploying backend plugin "css@1.50.1" from "/default-theia-plugins/vscode-builtin-css/extension" 
2021-05-10 15:39:36.692 root INFO Deploying backend plugin "css-language-features@1.50.1" from "/default-theia-plugins/vscode-builtin-css-language-features/extension/client/dist/node/cssClientMain" 
2021-05-10 15:39:36.693 root INFO Deploying backend plugin "debug-auto-launch@1.44.2" from "/default-theia-plugins/vscode-builtin-debug-auto-launch/extension/dist/extension" 
2021-05-10 15:39:36.694 root INFO Deploying backend plugin "docker@1.48.0" from "/default-theia-plugins/vscode-builtin-docker/extension" 
2021-05-10 15:39:36.695 root INFO Deploying backend plugin "emmet@1.44.2" from "/default-theia-plugins/vscode-builtin-emmet/extension/dist/extension" 
2021-05-10 15:39:36.701 root INFO Deploying backend plugin "fsharp@1.44.2" from "/default-theia-plugins/vscode-builtin-fsharp/extension" 
2021-05-10 15:39:36.704 root INFO Deploying backend plugin "go@1.44.2" from "/default-theia-plugins/vscode-builtin-go/extension" 
2021-05-10 15:39:36.707 root INFO Deploying backend plugin "groovy@1.44.2" from "/default-theia-plugins/vscode-builtin-groovy/extension" 
2021-05-10 15:39:36.708 root INFO Deploying backend plugin "grunt@1.44.2" from "/default-theia-plugins/vscode-builtin-grunt/extension/dist/main" 
2021-05-10 15:39:36.709 root INFO Deploying backend plugin "gulp@1.44.2" from "/default-theia-plugins/vscode-builtin-gulp/extension/dist/main" 
2021-05-10 15:39:36.712 root INFO Deploying backend plugin "handlebars@1.44.2" from "/default-theia-plugins/vscode-builtin-handlebars/extension" 
2021-05-10 15:39:36.714 root INFO Deploying backend plugin "hlsl@1.44.2" from "/default-theia-plugins/vscode-builtin-hlsl/extension" 
2021-05-10 15:39:36.721 root INFO Deploying backend plugin "html@1.50.1" from "/default-theia-plugins/vscode-builtin-html/extension" 
2021-05-10 15:39:36.722 root INFO Deploying backend plugin "html-language-features@1.50.1" from "/default-theia-plugins/vscode-builtin-html-language-features/extension/client/dist/node/htmlClientMain" 
2021-05-10 15:39:36.723 root INFO Deploying backend plugin "vscode-theme-seti@1.44.2" from "/default-theia-plugins/vscode-builtin-icon-theme-seti/extension" 
2021-05-10 15:39:36.728 root INFO Deploying backend plugin "ini@1.44.2" from "/default-theia-plugins/vscode-builtin-ini/extension" 
2021-05-10 15:39:36.729 root INFO Deploying backend plugin "jake@1.44.2" from "/default-theia-plugins/vscode-builtin-jake/extension/dist/main" 
2021-05-10 15:39:36.736 root INFO Deploying backend plugin "java@1.50.1" from "/default-theia-plugins/vscode-builtin-java/extension" 
2021-05-10 15:39:36.766 root INFO Deploying backend plugin "javascript@1.44.2" from "/default-theia-plugins/vscode-builtin-javascript/extension" 
2021-05-10 15:39:36.778 root INFO Deploying backend plugin "js-debug@1.49.8" from "/default-theia-plugins/vscode-builtin-js-debug/extension/src/extension.js" 
2021-05-10 15:39:36.783 root INFO Deploying backend plugin "json@1.50.1" from "/default-theia-plugins/vscode-builtin-json/extension" 
2021-05-10 15:39:36.784 root INFO Deploying backend plugin "json-language-features@1.50.1" from "/default-theia-plugins/vscode-builtin-json-language-features/extension/client/dist/node/jsonClientMain" 
2021-05-10 15:39:36.787 root INFO Deploying backend plugin "less@1.44.2" from "/default-theia-plugins/vscode-builtin-less/extension" 
2021-05-10 15:39:36.788 root INFO Deploying backend plugin "log@1.44.2" from "/default-theia-plugins/vscode-builtin-log/extension" 
2021-05-10 15:39:36.791 root INFO Deploying backend plugin "lua@1.44.2" from "/default-theia-plugins/vscode-builtin-lua/extension" 
2021-05-10 15:39:36.794 root INFO Deploying backend plugin "make@1.44.2" from "/default-theia-plugins/vscode-builtin-make/extension" 
2021-05-10 15:39:36.806 root INFO Deploying backend plugin "markdown@1.44.2" from "/default-theia-plugins/vscode-builtin-markdown/extension" 
2021-05-10 15:39:36.809 root INFO Deploying backend plugin "markdown-language-features@1.39.2" from "/default-theia-plugins/vscode-builtin-markdown-language-features/extension/dist/extension" 
2021-05-10 15:39:36.810 root INFO Deploying backend plugin "merge-conflict@1.44.2" from "/default-theia-plugins/vscode-builtin-merge-conflicts/extension/dist/extension" 
2021-05-10 15:39:36.812 root INFO Deploying backend plugin "npm@1.44.2" from "/default-theia-plugins/vscode-builtin-npm/extension/dist/main" 
2021-05-10 15:39:36.838 root INFO Deploying backend plugin "objective-c@1.44.2" from "/default-theia-plugins/vscode-builtin-objective-c/extension" 
2021-05-10 15:39:36.846 root INFO Deploying backend plugin "perl@1.44.2" from "/default-theia-plugins/vscode-builtin-perl/extension" 
2021-05-10 15:39:36.854 root INFO Deploying backend plugin "php@1.44.2" from "/default-theia-plugins/vscode-builtin-php/extension" 
2021-05-10 15:39:36.858 root INFO Deploying backend plugin "powershell@1.44.2" from "/default-theia-plugins/vscode-builtin-powershell/extension" 
2021-05-10 15:39:36.870 root INFO Deploying backend plugin "pug@1.44.2" from "/default-theia-plugins/vscode-builtin-pug/extension" 
2021-05-10 15:39:36.889 root INFO Deploying backend plugin "python@1.44.2" from "/default-theia-plugins/vscode-builtin-python/extension/dist/pythonMain" 
2021-05-10 15:39:36.905 root INFO Deploying backend plugin "r@1.44.2" from "/default-theia-plugins/vscode-builtin-r/extension" 
2021-05-10 15:39:36.911 root INFO Deploying backend plugin "razor@1.44.2" from "/default-theia-plugins/vscode-builtin-razor/extension" 
2021-05-10 15:39:36.922 root INFO Deploying backend plugin "ruby@1.44.2" from "/default-theia-plugins/vscode-builtin-ruby/extension" 
2021-05-10 15:39:36.926 root INFO Deploying backend plugin "rust@1.44.2" from "/default-theia-plugins/vscode-builtin-rust/extension" 
2021-05-10 15:39:36.934 root INFO Deploying backend plugin "scss@1.44.2" from "/default-theia-plugins/vscode-builtin-scss/extension" 
2021-05-10 15:39:36.945 root INFO Deploying backend plugin "shaderlab@1.44.2" from "/default-theia-plugins/vscode-builtin-shaderlab/extension" 
2021-05-10 15:39:36.963 root INFO Deploying backend plugin "shellscript@1.44.2" from "/default-theia-plugins/vscode-builtin-shellscript/extension" 
2021-05-10 15:39:36.972 root INFO Deploying backend plugin "sql@1.44.2" from "/default-theia-plugins/vscode-builtin-sql/extension" 
2021-05-10 15:39:36.988 root INFO Deploying backend plugin "swift@1.44.2" from "/default-theia-plugins/vscode-builtin-swift/extension" 
2021-05-10 15:39:36.991 root INFO Deploying backend plugin "theme-abyss@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-abyss/extension" 
2021-05-10 15:39:36.993 root INFO Deploying backend plugin "theme-defaults@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-defaults/extension" 
2021-05-10 15:39:36.997 root INFO Deploying backend plugin "theme-kimbie-dark@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-kimbie-dark/extension" 
2021-05-10 15:39:37.000 root INFO Deploying backend plugin "theme-monokai@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-monokai/extension" 
2021-05-10 15:39:37.003 root INFO Deploying backend plugin "theme-monokai-dimmed@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-monokai-dimmed/extension" 
2021-05-10 15:39:37.008 root INFO Deploying backend plugin "theme-quietlight@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-quietlight/extension" 
2021-05-10 15:39:37.011 root INFO Deploying backend plugin "theme-red@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-red/extension" 
2021-05-10 15:39:37.014 root INFO Deploying backend plugin "theme-solarized-dark@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-solarized-dark/extension" 
2021-05-10 15:39:37.018 root INFO Deploying backend plugin "theme-solarized-light@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-solarized-light/extension" 
2021-05-10 15:39:37.026 root INFO Deploying backend plugin "theme-tomorrow-night-blue@1.44.2" from "/default-theia-plugins/vscode-builtin-theme-tomorrow-night-blue/extension" 
2021-05-10 15:39:37.090 root INFO Deploying backend plugin "typescript@1.44.2" from "/default-theia-plugins/vscode-builtin-typescript/extension" 
2021-05-10 15:39:37.098 root INFO Deploying backend plugin "vb@1.44.2" from "/default-theia-plugins/vscode-builtin-vb/extension" 
2021-05-10 15:39:37.109 root INFO Deploying backend plugin "xml@1.44.2" from "/default-theia-plugins/vscode-builtin-xml/extension" 
2021-05-10 15:39:37.116 root INFO Deploying backend plugin "yaml@1.44.2" from "/default-theia-plugins/vscode-builtin-yaml/extension" 
2021-05-10 15:39:37.135 root INFO Deploying backend plugin "git@1.49.3" from "/default-theia-plugins/vscode-git/extension/dist/main" 
2021-05-10 15:39:37.137 root INFO Deploying backend plugin "github@1.50.1" from "/default-theia-plugins/vscode-github/extension/dist/extension.js" 
2021-05-10 15:39:37.188 root INFO Deploying backend plugin "references-view@0.0.47" from "/default-theia-plugins/vscode-references-view/extension/dist/extension" 
2021-05-10 15:39:37.189 root INFO Deploy plugins list took: 64877.2 ms 
2021-05-10 15:39:37.891 root INFO [hosted-plugin: 45] PLUGIN_HOST_CHE_THEIA(45) starting instance 
2021-05-10 15:39:37.892 root INFO PLUGIN_HOST_CHE_THEIA(45) starting instance
 
2021-05-10 15:39:39.478 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955] Sync of 82 plugins took: 33659.2 ms 
2021-05-10 15:39:39.610 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][theia.playground-share-workspace]: Loaded contributions. 
2021-05-10 15:39:39.678 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/github-auth-plugin]: Loaded contributions. 
2021-05-10 15:39:39.699 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/ports-plugin]: Failed to load 'views.endpoints' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.registerView (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2372005)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199862
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199812)
    at oe (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199954)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3200087)
    at s (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2431426)
2021-05-10 15:39:39.845 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/ports-plugin]: Loaded contributions. 
2021-05-10 15:39:39.978 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse-che.@eclipse-che/recommendations-plugin]: Loaded contributions. 
2021-05-10 15:39:40.006 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/resource-monitor-plugin]: Loaded contributions. 
2021-05-10 15:39:40.012 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/telemetry-plugin]: Loaded contributions. 
2021-05-10 15:39:40.016 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/theia-containers-plugin]: Failed to load 'viewContainers.my-workspace' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.doRegisterViewContainer (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2370695)
    at e.registerViewContainer (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2369805)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199497
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199438)
    at re (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199608)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199752)
2021-05-10 15:39:40.025 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/theia-containers-plugin]: Failed to load 'views.workspace' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.registerView (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2372005)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199862
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199812)
    at oe (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199954)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3200087)
    at s (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2431426)
2021-05-10 15:39:40.029 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/theia-containers-plugin]: Loaded contributions. 
2021-05-10 15:39:40.031 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/theia-ssh-plugin]: Loaded contributions. 
2021-05-10 15:39:40.035 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/welcome-plugin]: Loaded contributions. 
2021-05-10 15:39:40.038 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.@eclipse-che/workspace-plugin]: Loaded contributions. 
2021-05-10 15:39:40.043 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][@eclipse-che.ext-plugin]: Loaded contributions. 
2021-05-10 15:39:40.046 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][eclipse che.task-plugin]: Loaded contributions. 
2021-05-10 15:39:40.048 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][theia.@theia/yeoman-plugin]: Loaded contributions. 
2021-05-10 15:39:40.049 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.bat]: Loaded contributions. 
2021-05-10 15:39:40.052 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.clojure]: Loaded contributions. 
2021-05-10 15:39:40.055 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.coffeescript]: Loaded contributions. 
2021-05-10 15:39:40.056 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.configuration-editing]: Loaded contributions. 
2021-05-10 15:39:40.057 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.cpp]: Loaded contributions. 
2021-05-10 15:39:40.062 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.csharp]: Loaded contributions. 
2021-05-10 15:39:40.065 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.css]: Loaded contributions. 
2021-05-10 15:39:40.068 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.css-language-features]: Loaded contributions. 
2021-05-10 15:39:40.070 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.debug-auto-launch]: Loaded contributions. 
2021-05-10 15:39:40.073 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.docker]: Loaded contributions. 
2021-05-10 15:39:40.076 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.emmet]: Loaded contributions. 
2021-05-10 15:39:40.078 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.fsharp]: Loaded contributions. 
2021-05-10 15:39:40.082 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.go]: Loaded contributions. 
2021-05-10 15:39:40.084 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.groovy]: Loaded contributions. 
2021-05-10 15:39:40.086 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.grunt]: Loaded contributions. 
2021-05-10 15:39:40.087 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.gulp]: Loaded contributions. 
2021-05-10 15:39:40.090 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.handlebars]: Loaded contributions. 
2021-05-10 15:39:40.092 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.hlsl]: Loaded contributions. 
2021-05-10 15:39:40.095 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.html]: Loaded contributions. 
2021-05-10 15:39:40.100 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.html-language-features]: Loaded contributions. 
2021-05-10 15:39:40.102 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.vscode-theme-seti]: Loaded contributions. 
2021-05-10 15:39:40.112 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.ini]: Loaded contributions. 
2021-05-10 15:39:40.114 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.jake]: Loaded contributions. 
2021-05-10 15:39:40.115 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.java]: Loaded contributions. 
2021-05-10 15:39:40.117 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.javascript]: Loaded contributions. 
2021-05-10 15:39:40.118 root WARN 'ms-vscode.js-debug' plugin contributes items to a menu with invalid identifier: debug/toolBar 
2021-05-10 15:39:40.118 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][ms-vscode.js-debug]: Failed to load 'views.jsBrowserBreakpoints' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.registerView (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2372005)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199862
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199812)
    at oe (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199954)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3200087)
    at s (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2431426)
2021-05-10 15:39:40.119 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][ms-vscode.js-debug]: Loaded contributions. 
2021-05-10 15:39:40.120 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.json]: Loaded contributions. 
2021-05-10 15:39:40.121 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.json-language-features]: Loaded contributions. 
2021-05-10 15:39:40.123 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.less]: Loaded contributions. 
2021-05-10 15:39:40.124 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.log]: Loaded contributions. 
2021-05-10 15:39:40.126 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.lua]: Loaded contributions. 
2021-05-10 15:39:40.127 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.make]: Loaded contributions. 
2021-05-10 15:39:40.129 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Loaded contributions. 
2021-05-10 15:39:40.130 root WARN 'vscode.markdown-language-features' plugin contributes items to a menu with invalid identifier: editor/title/context 
2021-05-10 15:39:40.131 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown-language-features]: Loaded contributions. 
2021-05-10 15:39:40.135 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.merge-conflict]: Loaded contributions. 
2021-05-10 15:39:40.138 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.npm]: Failed to load 'views.npm' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.registerView (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2372005)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199862
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199812)
    at oe (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199954)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3200087)
    at s (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2431426)
2021-05-10 15:39:40.139 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.npm]: Loaded contributions. 
2021-05-10 15:39:40.141 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.objective-c]: Loaded contributions. 
2021-05-10 15:39:40.144 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.perl]: Loaded contributions. 
2021-05-10 15:39:40.145 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.php]: Loaded contributions. 
2021-05-10 15:39:40.148 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.powershell]: Loaded contributions. 
2021-05-10 15:39:40.150 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.pug]: Loaded contributions. 
2021-05-10 15:39:40.152 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.python]: Loaded contributions. 
2021-05-10 15:39:40.154 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.r]: Loaded contributions. 
2021-05-10 15:39:40.156 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.razor]: Loaded contributions. 
2021-05-10 15:39:40.157 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.ruby]: Loaded contributions. 
2021-05-10 15:39:40.161 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.rust]: Loaded contributions. 
2021-05-10 15:39:40.161 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.scss]: Loaded contributions. 
2021-05-10 15:39:40.167 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.shaderlab]: Loaded contributions. 
2021-05-10 15:39:40.176 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.shellscript]: Loaded contributions. 
2021-05-10 15:39:40.182 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.sql]: Loaded contributions. 
2021-05-10 15:39:40.185 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.swift]: Loaded contributions. 
2021-05-10 15:39:40.188 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-abyss]: Loaded contributions. 
2021-05-10 15:39:40.192 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-defaults]: Loaded contributions. 
2021-05-10 15:39:40.193 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-kimbie-dark]: Loaded contributions. 
2021-05-10 15:39:40.197 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-monokai]: Loaded contributions. 
2021-05-10 15:39:40.199 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-monokai-dimmed]: Loaded contributions. 
2021-05-10 15:39:40.202 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-quietlight]: Loaded contributions. 
2021-05-10 15:39:40.205 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-red]: Loaded contributions. 
2021-05-10 15:39:40.207 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-solarized-dark]: Loaded contributions. 
2021-05-10 15:39:40.212 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-solarized-light]: Loaded contributions. 
2021-05-10 15:39:40.217 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.theme-tomorrow-night-blue]: Loaded contributions. 
2021-05-10 15:39:40.226 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.typescript]: Loaded contributions. 
2021-05-10 15:39:40.232 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.vb]: Loaded contributions. 
2021-05-10 15:39:40.236 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.xml]: Loaded contributions. 
2021-05-10 15:39:40.239 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.yaml]: Loaded contributions. 
2021-05-10 15:39:40.240 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: scm/sourceControl 
2021-05-10 15:39:40.242 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: scm/change/title 
2021-05-10 15:39:40.244 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.commit 
2021-05-10 15:39:40.249 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.changes 
2021-05-10 15:39:40.250 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.pullpush 
2021-05-10 15:39:40.254 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.branch 
2021-05-10 15:39:40.256 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.remotes 
2021-05-10 15:39:40.260 root WARN 'vscode.git' plugin contributes items to a menu with invalid identifier: git.stash 
2021-05-10 15:39:40.263 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.git]: Loaded contributions. 
2021-05-10 15:39:40.268 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.github]: Loaded contributions. 
2021-05-10 15:39:40.272 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][ms-vscode.references-view]: Failed to load 'viewContainers.references-view' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.doRegisterViewContainer (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2370695)
    at e.registerViewContainer (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2369805)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199497
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199438)
    at re (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199608)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199752)
2021-05-10 15:39:40.276 root ERROR [d2fb6e48-09ed-44cb-8ecf-1175d977b955][ms-vscode.references-view]: Failed to load 'views.references-view.tree' contribution. Params: TypeError: Cannot read property 'localeCompare' of undefined
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258780
    at Array.sort (<anonymous>)
    at e.registerItem (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:258741)
    at e.registerView (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2372005)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199862
    at G (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3195505)
    at r (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199812)
    at oe (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3199954)
    at e.handleContributions (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:3200087)
    at s (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/theia.4941967b04c97bace8d4.js:1:2431426)
2021-05-10 15:39:40.277 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][ms-vscode.references-view]: Loaded contributions. 
2021-05-10 15:39:40.281 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.typescript-language-features]: Loaded contributions. 
2021-05-10 15:39:40.286 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955] Load contributions of 82 plugins took: 939.0 ms 
2021-05-10 15:39:40.315 root WARN 'cpp' language is remapped from 'source.cpp.embedded.macro' to 'source.cpp' scope 
2021-05-10 15:39:40.323 root WARN a registered grammar configuration for 'cpp' language is overridden 
2021-05-10 15:39:40.325 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.html]: Language for 'source.smarty' not found. 
2021-05-10 15:39:40.327 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Language for 'meta.embedded.block.vs_net' not found. 
2021-05-10 15:39:40.328 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Language for 'meta.embedded.block.dosbatch' not found. 
2021-05-10 15:39:40.330 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Language for 'meta.embedded.block.coffee' not found. 
2021-05-10 15:39:40.332 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Language for 'meta.embedded.block.objc' not found. 
2021-05-10 15:39:40.342 root WARN [d2fb6e48-09ed-44cb-8ecf-1175d977b955][vscode.markdown]: Language for 'meta.embedded.block.scala' not found. 
2021-05-10 15:39:40.345 root WARN 'php' language is remapped from 'source.php' to 'text.html.php' scope 
2021-05-10 15:39:40.348 root WARN a registered grammar configuration for 'php' language is overridden 
2021-05-10 15:39:41.815 root ERROR Failed to load plugins: Params: Error: Unknown actor PluginRemoteNode
    at e.doInvokeHandler (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:149231)
    at e.invokeHandler (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:149090)
    at e.receiveRequest (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:148378)
    at e.receiveOneMessage (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:147865)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:145855
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:149735
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:12:387037
    at e.invoke (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:12:387256)
    at e.fire (https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:12:389311)
    at https://serverephv1apw-jwtproxy-server-4402.192.168.86.21.nip.io/worker-ext.fd697f1191e190451b06.js:10:54156
2021-05-10 15:39:41.837 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955] Sync of 0 plugins took: 11.3 ms 
2021-05-10 15:39:41.840 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955] Load contributions of 0 plugins took: 0.1 ms 
2021-05-10 15:39:41.885 root INFO [d2fb6e48-09ed-44cb-8ecf-1175d977b955] Start of 0 plugins took: 43.4 ms 
2021-05-10 15:39:42.061 root ERROR Error: ENOENT: no such file or directory, stat '/home/theia/node_modules/@eclipse-che/theia-plugin-ext/lib/webworker/che-api-worker-provider.js.map' 

Additional context

Metadata

Metadata

Assignees

No one assigned

    Labels

    area/pluginskind/bugOutline of a bug - must adhere to the bug report template.severity/P2Has a minor but important impact to the usage or development of the system.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions