Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
fbdf4007
Commit
fbdf4007
authored
Mar 02, 2020
by
Dominik Hebeler
Browse files
fixed error in regex
parent
5858691f
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab/production-values.yaml
View file @
fbdf4007
...
@@ -4,6 +4,10 @@ service:
...
@@ -4,6 +4,10 @@ service:
hpa
:
hpa
:
minReplicas
:
5
minReplicas
:
5
maxReplicas
:
25
maxReplicas
:
25
podDisruptionBudget
:
enabled
:
true
minAvailable
:
3
maxUnavailable
:
3
ingress
:
ingress
:
annotations
:
annotations
:
certmanager.k8s.io/cluster-issuer
:
letsencrypt-prod
certmanager.k8s.io/cluster-issuer
:
letsencrypt-prod
...
...
app/MetaGer.php
View file @
fbdf4007
...
@@ -1390,7 +1390,7 @@ class MetaGer
...
@@ -1390,7 +1390,7 @@ class MetaGer
$logEntry
.
=
" key="
.
$this
->
apiKey
;
$logEntry
.
=
" key="
.
$this
->
apiKey
;
$logEntry
.
=
" eingabe="
.
$this
->
eingabe
;
$logEntry
.
=
" eingabe="
.
$this
->
eingabe
;
$logEntry
=
preg_replace
(
"
\n
+"
,
" "
,
$logEntry
);
$logEntry
=
preg_replace
(
"
/
\n
+
/
"
,
" "
,
$logEntry
);
$logpath
=
\
App\MetaGer
::
getMGLogFile
();
$logpath
=
\
App\MetaGer
::
getMGLogFile
();
if
(
file_put_contents
(
$logpath
,
$logEntry
.
PHP_EOL
,
FILE_APPEND
)
===
false
)
{
if
(
file_put_contents
(
$logpath
,
$logEntry
.
PHP_EOL
,
FILE_APPEND
)
===
false
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment