Internal server error: 5fb796e5ae45

I receive the following error
anvil.server.InternalError: Internal server error: 5fb796e5ae45

  • at /downlink-sources/downlink-2024-06-07-15-36-52/anvil/_threaded_server.py:436
  • called from /downlink-sources/downlink-2024-06-07-15-36-52/anvil/server.py:59
  • called from /downlink-sources/downlink-2024-06-07-15-36-52/anvil/google/sheets.py:186

All I’ve done is add a row to a Google Sheet. Everything is connected to the sheet properly and my other apps are able to update rows on other google sheets. This program itself was also updating the sheet and then randomly stopped working without any reason to indicate why it should. Now I just get this error and I’ve been unable to find any reason to why I’m getting it. The following is the code that is giving the error.

Code Sample:

  app_files.spreadsheetname.worksheets[0].add_row(row=sample1, ...)

Hi @cognimetrics,

Sorry for the unhelpful error message here. This is a limitation of the Google Sheets API, which is unable to cope with adding rows to worksheets with spaces in the name. Please rename your worksheet to something without spaces, and this error should go away!

1 Like

Thank you so much, I appreciate it.