Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Scheduling Scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xx network
Scheduling Scripts
Merge requests
!9
Remove truncate and add on conflict clause instead
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove truncate and add on conflict clause instead
hotfix/remove-truncate
into
master
Overview
4
Commits
22
Pipelines
0
Changes
1
Merged
Jonah Husson
requested to merge
hotfix/remove-truncate
into
master
3 years ago
Overview
4
Commits
22
Pipelines
0
Changes
1
Expand
1
0
Merge request reports
Compare
version 13
version 20
cde71b44
3 years ago
version 19
2405ef5c
3 years ago
version 18
b3ed7092
3 years ago
version 17
cd02e5c1
3 years ago
version 16
407db710
3 years ago
version 15
61d1d62f
3 years ago
version 14
ca11c8b6
3 years ago
version 13
08707e18
3 years ago
version 12
c345d51e
3 years ago
version 11
38407d2f
3 years ago
version 10
83025eb5
3 years ago
version 9
9d1e0e7b
3 years ago
version 8
6070b90b
3 years ago
version 7
95352b76
3 years ago
version 6
ba86c6ee
3 years ago
version 5
2a68b326
3 years ago
version 4
cf00a61b
3 years ago
version 3
83d65c90
3 years ago
version 2
c8a55bff
3 years ago
version 1
e1ffe3ee
3 years ago
master (base)
and
version 14
latest version
7c4616b7
22 commits,
3 years ago
version 20
cde71b44
21 commits,
3 years ago
version 19
2405ef5c
20 commits,
3 years ago
version 18
b3ed7092
19 commits,
3 years ago
version 17
cd02e5c1
18 commits,
3 years ago
version 16
407db710
17 commits,
3 years ago
version 15
61d1d62f
16 commits,
3 years ago
version 14
ca11c8b6
15 commits,
3 years ago
version 13
08707e18
13 commits,
3 years ago
version 12
c345d51e
12 commits,
3 years ago
version 11
38407d2f
11 commits,
3 years ago
version 10
83025eb5
10 commits,
3 years ago
version 9
9d1e0e7b
9 commits,
3 years ago
version 8
6070b90b
8 commits,
3 years ago
version 7
95352b76
7 commits,
3 years ago
version 6
ba86c6ee
6 commits,
3 years ago
version 5
2a68b326
5 commits,
3 years ago
version 4
cf00a61b
4 commits,
3 years ago
version 3
83d65c90
3 commits,
3 years ago
version 2
c8a55bff
2 commits,
3 years ago
version 1
e1ffe3ee
1 commit,
3 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
scheduling.py
+
1
−
1
Options
@@ -731,13 +731,13 @@ def set_authorizer_nodes(conn, to_add, to_delete):
try
:
cur
.
execute
(
insert_command
,
[
e
for
l
in
insert_list
for
e
in
l
])
log
.
debug
(
cur
.
query
)
conn
.
commit
()
except
Exception
as
e
:
log
.
error
(
f
"
Failed to insert into authorizer db:
{
cur
.
query
}
"
)
raise
e
finally
:
cur
.
close
()
conn
.
commit
()
return
to_revoke
Loading