The server went down

I have a simple query to the database, sometimes it brings me the data and sometimes it doesn’t, I don’t know if it’s a server problem.

it is my code

    DataQueryBuilder queryBuilder = DataQueryBuilder.Create();
    AsyncCallback<IList<Dictionary<string, object>>> findCallback;
    findCallback = new AsyncCallback<IList<Dictionary<string, object>>>(
      foundObjects =>
      {
          print("Data");
          print(JsonConvert.SerializeObject(foundObjects));
      },
      error =>
      {
          print("Server returned an error " + error.Message);
      });

    Backendless.Data.Of("Users").Find(queryBuilder, findCallback);

First execution
image

Second execution
image

Hello @Jorge_rojas,

which Backendless version do you use - Cloud or Pro?

Regards,
Stanislaw

I use Cloud 9

Hello @Jorge_rojas,

could you please try again and let us know if this still reproduces?

Regards,
Stanislaw

I had the same problem yesterday

Hi, @Nestch_Co

The day before yesterday we had some issues. They were resolved almost immediately. At this time, everything should be working correctly from our side.

Regards,
Marina