Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adornis
Engine
Merge requests
!337
Theld/fix baseql bugs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Theld/fix baseql bugs
theld/fix-baseql-bugs
into
master
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
TheLD
requested to merge
theld/fix-baseql-bugs
into
master
11 months ago
Overview
0
Commits
2
Pipelines
2
Changes
2
0
0
Merge request reports
Compare
master
version 1
24c0a313
11 months ago
master (base)
and
latest version
latest version
e369ba02
2 commits,
11 months ago
version 1
24c0a313
2 commits,
11 months ago
2 files
+
4
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
modules/baseql/client/baseqlClient.ts
+
1
−
1
View file @ e369ba02
Edit in single-file editor
Open in Web IDE
Show full file
@@ -87,7 +87,7 @@ export class BaseQLClient {
* See the `BaseQLClient` JSDoc for more info.
*/
static
createTransportHandler
(
options
?:
TransportOptions
)
{
const
transport
=
BaseQLWebsocketTransport
.
get
(
{
sessionID
:
localStorage
.
getItem
(
'
sessionID
'
)
??
''
}
,
options
);
const
transport
=
BaseQLWebsocketTransport
.
get
(
undefined
,
options
);
const
transportHandler
=
new
UpgradeHandler
(
new
UnpackHandler
(
transport
));
this
.
setTransport
(
transport
);
return
transportHandler
;
Loading