Assertion failed: IsValid() error

Getting this error every time when I truy to create server with Epic Online Service deticated server.

error message: Assertion failed: IsValid() [File:D:\unrealSourceCode\UnrealEngine\Engine\Source\Runtime\Core\Public\Templates\SharedPointer.h] [Line: 1082]

full log file:
test.log (74.1 KB)

hope somebody have an answer.

Seems to be an issue with a shared pointer in your code. This error occurs when the SharedPointer is checked for a valid object and it is found to be null. This can happen when the object it is pointing to has been deleted or when the shared pointer is not initialized properly.

A few things you can try to resolve this issue include:

  • Check for any null pointers in your code that might be causing the issue.
  • Make sure that the object being referred to by the shared pointer is not deleted before the shared pointer is.
  • Ensure that your code is properly initializing the shared pointer and that it is pointing to a valid object.
  • Try to reproduce the error in a new project to make sure that the problem is not with the project itself.

The problem is that i get this error when i am truying to create advanced session on deticated server. I have no objects or anithing like that. Allready truyed to make a new project, and still getting this error whenever i try to create EOS session

I am getting this error as well, I am trying to create a simple dedicated server via EOS.