Skip to content

Commit

Permalink
fix: remove securityKey
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Apr 23, 2021
1 parent b5dbf3a commit c4e2334
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ var api = ( ()=> {
console.log("config WS utils==== ",config)
const socket_config = {
"config": {
"apiKey": config["apiKey"],
"securityKey": config["securityKey"],
"organization_id": config["organization_id"],
"apiKey": config["apiKey"],
"securityKey": config["securityKey"],
"organization_Id": config["organization_id"],
},
"prefix": "ws",
"host": "server.cocreate.app:8088"
Expand All @@ -42,10 +42,9 @@ var api = ( ()=> {
event,
apiKey: config["apiKey"],
securityKey: config["securityKey"],
organization_id: config["organization_id"]
// organization_id: config["organization_id"]
});
let org_row = await crud.listenAsync(event);
console.log(org_row)
try{
org_row =org_row["data"];
}catch(e){
Expand Down

0 comments on commit c4e2334

Please sign in to comment.