-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/socket support #34
base: feat/mux-support
Are you sure you want to change the base?
Conversation
controllers/websocketHandler.go
Outdated
return | ||
} | ||
|
||
log.Printf("Connected with %v", session.connection.RemoteAddr()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here we used log
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replaced it with logrus
@@ -7,6 +7,6 @@ import ( | |||
) | |||
|
|||
func main() { | |||
logrus.Info("Starting server on port " + config.AppConfig.Port) | |||
routes.Listen(":" + config.AppConfig.Port) | |||
logrus.Info("Starting server on port " + config.AppConfig.PORT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and here logrus why so ..?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for pointing it out, I've now updated it with logrus
Date: 10 Jan 2025
Developer Name: Joy Gupta
Issue Ticket Number
#28
Description
This PR contains code to enable websocket in discord service which later on can be used to connect with discord queue
Documentation Updated?
Under Feature Flag
Database Changes
Breaking Changes
Development Tested?
Screenshots
Screen.Recording.2025-01-10.at.10.43.25.AM.mov
Test Coverage
Additional Notes