Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dummy-vue-grpc
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vig
provee
dummy-vue-grpc
Commits
7ea454ed
Commit
7ea454ed
authored
4 years ago
by
IsolatedSushi
Browse files
Options
Downloads
Patches
Plain Diff
Removing console lines
parent
39138472
No related branches found
Branches containing commit
No related tags found
1 merge request
!13
Major update
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
backend/gRPCProjector/python/grpcServer.py
+0
-1
0 additions, 1 deletion
backend/gRPCProjector/python/grpcServer.py
backend/webSocketGateway/src/webSocketGateway.js
+0
-1
0 additions, 1 deletion
backend/webSocketGateway/src/webSocketGateway.js
with
0 additions
and
2 deletions
backend/gRPCProjector/python/grpcServer.py
+
0
−
1
View file @
7ea454ed
...
...
@@ -18,7 +18,6 @@ class ProjectorService(rpc.ProjectorServicer):
pointChunkBuffer
.
append
(
self
.
rowToPoint
(
row
))
print
(
"
Sending back
"
,
len
(
pointChunkBuffer
),
"
Points
"
)
pointChunk
=
projector
.
PointChunk
(
points
=
pointChunkBuffer
)
yield
pointChunk
...
...
This diff is collapsed.
Click to expand it.
backend/webSocketGateway/src/webSocketGateway.js
+
0
−
1
View file @
7ea454ed
...
...
@@ -146,7 +146,6 @@ function sendRandomPointStream(connection) {
//Result from KNN request
function
sendNeighbour
(
response
,
ws
){
console
.
log
(
response
);
if
(
!
response
||
response
[
"
rows
"
].
length
==
0
){
const
errMSG
=
"
The word (or one of the words) was not in the set (or hasnt been received yet)
"
;
console
.
log
(
errMSG
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment