Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
j.hoerdt
sensor2graph
Commits
7e0f6e49
Commit
7e0f6e49
authored
Dec 15, 2021
by
neop
Browse files
correct credential order
parent
737d983f
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/sensor2graph/Main.java
View file @
7e0f6e49
...
...
@@ -81,8 +81,8 @@ public class Main {
InfluxDBClientOptions
.
builder
()
.
url
(
Main
.
influxdb_uri
)
.
authenticateToken
(
String
.
format
(
"%s:%s"
,
System
.
getenv
(
"SENSOR2GRAPH_INFLUXDB_
PASS
"
),
System
.
getenv
(
"SENSOR2GRAPH_INFLUXDB_
USER
"
)
System
.
getenv
(
"SENSOR2GRAPH_INFLUXDB_
USER
"
),
System
.
getenv
(
"SENSOR2GRAPH_INFLUXDB_
PASS
"
)
).
toCharArray
())
.
bucket
(
Main
.
influxdb_database_name
)
.
org
(
"-"
)
...
...
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