An internal trouble ticket with ID 698D4D1C-EC4A-88C8-FF0F-39618E533200

Greetings backendless,
The subject trouble was raised during one of my test runs to the server.
Any indication as to what caused it and the resolution?
Error is on the Data Tables
Backendless encountered an error while handling the request. An internal trouble ticket with ID 698D4D1C-EC4A-88C8-FF0F-39618E533200 has been created and we will be investigating the issue.

Regards,
George

Hello,

The internal error says the “profilePicUrl” column cannot be found. Could you describe the steps that led you to that condition in the app?

Regards,
Mark

Hello Mark,

I was trying to add some dummy data like so


 @Override
 protected Void doInBackground(BackendlessUser... params) {
 IDataStore<BackendlessUser> dataStore = Backendless.Data.of(BackendlessUser.class);
 for (int i = 0; i < 69; i++) {
 BackendlessUser user = new BackendlessUser();
 GeoPoint firstLocation = new GeoPoint(10.211111 + i, -76.188888 + i);
 user.setProperty("firstName", "Koffi " + i);
 user.setProperty("name", "Koffi Annan" + i);
 user.setEmail("anna" + i + "@yahoo.com");
 user.setPassword("1234");
 user.setProperty("profilePicUrl", "[url=https://api.backendless.com/7697e5e6-1532-54f6-ff75-d6616ec66900/v1/files/xyz.cellusoft.Pendomedia/xyz.cellusoft.Pendo.1752172348398225.profile_pic.png]https://api.backendless.com/7697e5e6-1532-54f6-ff75-d6616ec66900/v1/files/xyz.cellusoft.Pendomedia/xyz.cellusoft.Pendo.1752172348398225.profile_pic.png"[/url];);
 user.setProperty("gender", "Maeale");
 user.setProperty("location", firstLocation);

 user = dataStore.save(user);
 Log.d(TAG, "Added 300 users detals " + user.getObjectId());
 }
 return null;
 }

My Users table had 9 objects prior, this increased to 12 before the crash.

I previously used it succesfully in 3.0.

Regards,
George

Greetings Mark,

The above is still pending. I am stuck.

Regards,
George.

Hi George,

Your application has been fixed. Apologies for the delay.