Skip to content

Parameters disordering when using more than 10 parameters in app route #56

@mehulhere

Description

@mehulhere

image
image

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions