Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
S
stats-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
stats-facil
Validations
e20bd1b4
Valider
e20bd1b4
rédigé
10 years ago
par
Matthieu Aubry
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Only use transactions for bulk requests (more than one request)
parent
e67b57ca
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
1
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
1 fichier modifié
core/Tracker.php
+46
-3
46 ajouts, 3 suppressions
core/Tracker.php
avec
46 ajouts
et
3 suppressions
core/Tracker.php
+
46
−
3
Voir le fichier @
e20bd1b4
...
@@ -235,17 +235,17 @@ class Tracker
...
@@ -235,17 +235,17 @@ class Tracker
$this
->
initOutputBuffer
();
$this
->
initOutputBuffer
();
if
(
!
empty
(
$this
->
requests
))
{
if
(
!
empty
(
$this
->
requests
))
{
$xid
=
self
::
getDatabase
()
->
beginTransaction
();
$this
->
beginTransaction
();
try
{
try
{
foreach
(
$this
->
requests
as
$params
)
{
foreach
(
$this
->
requests
as
$params
)
{
$isAuthenticated
=
$this
->
trackRequest
(
$params
,
$tokenAuth
);
$isAuthenticated
=
$this
->
trackRequest
(
$params
,
$tokenAuth
);
}
}
$this
->
runScheduledTasksIfAllowed
(
$isAuthenticated
);
$this
->
runScheduledTasksIfAllowed
(
$isAuthenticated
);
self
::
getDatabase
()
->
commit
(
$xid
);
$this
->
commitTransaction
(
);
}
catch
(
DbException
$e
)
{
}
catch
(
DbException
$e
)
{
Common
::
printDebug
(
$e
->
getMessage
());
Common
::
printDebug
(
$e
->
getMessage
());
self
::
getDatabase
()
->
rollback
(
$xid
);
$this
->
rollbackTransaction
(
);
}
}
}
else
{
}
else
{
...
@@ -272,6 +272,47 @@ class Tracker
...
@@ -272,6 +272,47 @@ class Tracker
return
ob_get_contents
();
return
ob_get_contents
();
}
}
protected
function
beginTransaction
()
{
$this
->
transactionId
=
null
;
if
(
!
$this
->
shouldUseTransactions
())
{
return
;
}
$this
->
transactionId
=
self
::
getDatabase
()
->
beginTransaction
();
}
protected
function
commitTransaction
()
{
if
(
empty
(
$this
->
transactionId
))
{
return
;
}
self
::
getDatabase
()
->
commit
(
$this
->
transactionId
);
}
protected
function
rollbackTransaction
()
{
if
(
empty
(
$this
->
transactionId
))
{
return
;
}
self
::
getDatabase
()
->
rollback
(
$this
->
transactionId
);
}
/**
* @return bool
*/
protected
function
shouldUseTransactions
()
{
$isBulkRequest
=
count
(
$this
->
requests
)
>
1
;
return
$isBulkRequest
&&
$this
->
isTransactionSupported
();
}
/**
* @return bool
*/
protected
function
isTransactionSupported
()
{
return
(
bool
)
Config
::
getInstance
()
->
Tracker
[
'bulk_requests_use_transaction'
];
}
protected
function
shouldRunScheduledTasks
()
protected
function
shouldRunScheduledTasks
()
{
{
...
@@ -869,4 +910,6 @@ class Tracker
...
@@ -869,4 +910,6 @@ class Tracker
{
{
return
file_get_contents
(
"php://input"
);
return
file_get_contents
(
"php://input"
);
}
}
}
}
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter