

The parameters are arranged correctly till there are not more than 10 parameters, as soon as the number of parameters become more than 10. They get completely disordered. I have attached some screenshots, it can seen clearly there that instead of three eleven gets printed.
I can add more details on how to reproduce if needed.
I am pasting code for recreating the error here:
import flask_executor
from flask_executor import Executor
from flask import Flask, render_template
print(flask_executor.version)
app = Flask(name)
executor = Executor(app)
@app.route("/&one=&two=three=four=five=six=seven=eight=nine=ten=eleven=")
def ticketsuccess(one, two, three, four, five, six, seven, eight, nine, ten, eleven):
print(one)
print(two)
print(three)
print(four)
print(five)
print(six)
print(seven)
print(eight)
print(nine)
print(ten)
print(eleven)
print("ok")
return render_template("tickets.html")
if name== "main":
print(1)
app.run(debug=True)
The parameters are arranged correctly till there are not more than 10 parameters, as soon as the number of parameters become more than 10. They get completely disordered. I have attached some screenshots, it can seen clearly there that instead of three eleven gets printed.
I can add more details on how to reproduce if needed.
I am pasting code for recreating the error here:
import flask_executor
from flask_executor import Executor
from flask import Flask, render_template
print(flask_executor.version)
app = Flask(name)
executor = Executor(app)
@app.route("/&one=&two=three=four=five=six=seven=eight=nine=ten=eleven=")
def ticketsuccess(one, two, three, four, five, six, seven, eight, nine, ten, eleven):
print(one)
print(two)
print(three)
print(four)
print(five)
print(six)
print(seven)
print(eight)
print(nine)
print(ten)
print(eleven)
print("ok")
return render_template("tickets.html")
if name== "main":
print(1)
app.run(debug=True)