special characters in google app-engine task queue task names -


Are there any other special characters allowed in the work names in the dash (-) or work queues?

Yes, you can use a dash, you can have letters (any case) or number The names must be between 1 and 500 characters.

It is from seeing all, which specifies that the job names should match this regular expression:

  MAX_TASK_NAME_LENGTH = 500 r '^ [A-zA- Z0-9 -] {1,% s} $ '% MAX_TASK_NAME_LENGTH  

Comments