remove dead code

This commit is contained in:
adlerhurst
2024-12-23 09:18:48 +01:00
parent 8f5bdff131
commit b532335b9d
6 changed files with 83 additions and 54 deletions

View File

@@ -57,7 +57,7 @@ func (es *Eventstore) writeCommands(ctx context.Context, client database.Context
}()
}
_, err = tx.ExecContext(ctx, "SET LOCAL application_name = $1", fmt.Sprintf("zitadel_es_pusher_%s", authz.GetInstance(ctx).InstanceID()))
_, err = tx.ExecContext(ctx, fmt.Sprintf("SET LOCAL application_name = '%s'", fmt.Sprintf("zitadel_es_pusher_%s", authz.GetInstance(ctx).InstanceID())))
if err != nil {
return nil, err
}