Skip to content

Commit

Permalink
Test probleme timout
Browse files Browse the repository at this point in the history
  • Loading branch information
juggler31 committed Jan 22, 2025
1 parent 0b3ebf2 commit f0e632b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion atlas/atlasRoutes.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,14 +351,15 @@ def is_statut_in_groupe(statut, groupe):

@main.route("/area/<id_area>", methods=["GET", "POST"])
def ficheArea(id_area):
print("Fiche Area")
session = db.session
connection = db.engine.connect()

listTaxons = vmTaxonsRepository.getTaxonsAreas(connection, id_area)
taxon_pro_patri = vmStatsStatutTaxonCommRepository.get_nb_taxon_pro_pat_area(
connection, id_area
)
nb_organism = vmOrganismsRepository.get_nb_organism_on_area(connection, id_area)
nb_organism = 10 #vmOrganismsRepository.get_nb_organism_on_area(connection, id_area)
infos_area = vmAreasRepository.get_infos_area(connection, id_area)

area = tAreasRepository.getAreaFromIdArea(connection, id_area)
Expand Down

0 comments on commit f0e632b

Please sign in to comment.