1 Answer
- Newest
- Most votes
- Most comments
2
Hey Uskie,
Have you made any changes to your game code? As a reminder, you should make sure that the game server calls the Server SDK functions InitSDK() and then ProcessReady()` so that GameLiftLocal knows it can start a GameSession.
Does this error pop up every time you try and start a game session? You should expect to see this error when trying to create a second game session per process (since GameSessions and game server processes are 1:1). You can always start up another server process if you want to create multiple game sessions.
GameLift Local Docs: https://docs.aws.amazon.com/gamelift/latest/developerguide/integration-testing-local.html
answered 4 years ago
Relevant content
- asked 4 years ago

You are right! I feel silly - I made a change to my code, and InitSDK was never being called. I guess the error message threw me off. Thank you!