diff options
author | Erich Eckner <git@eckner.net> | 2019-07-19 13:36:39 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-07-19 13:36:39 +0200 |
commit | 35b67857937a8b92b70ac147ebafc03f3d2cecf4 (patch) | |
tree | be847030e60078fac58764d39e9715d01a97fa38 /bin/slave-build-connect | |
parent | 410b16c77a441a99915d44d5fe5b3c4ba2e04517 (diff) | |
download | builder-35b67857937a8b92b70ac147ebafc03f3d2cecf4.tar.xz |
bin/slave-build-connect: do not IGNORE on insert - there is no unique key being inserted anyways
Diffstat (limited to 'bin/slave-build-connect')
-rwxr-xr-x | bin/slave-build-connect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/slave-build-connect b/bin/slave-build-connect index 13fcf18..e40dc32 100755 --- a/bin/slave-build-connect +++ b/bin/slave-build-connect @@ -47,7 +47,7 @@ if [ "x${SSH_ORIGINAL_COMMAND%% *}" = 'xget-assignment' ] || \ ssh_log_id=$( # shellcheck disable=SC2016 { - printf 'INSERT IGNORE INTO `ssh_log` (`build_slave`,`action`,`parameters`)' + printf 'INSERT INTO `ssh_log` (`build_slave`,`action`,`parameters`)' printf ' VALUES (%s' \ "${slave_id}" printf ',from_base64("%s")' \ |