Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
ae9b9098
Commit
ae9b9098
authored
Oct 01, 2019
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cast port as int
parent
eda23c5d
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
895 deletions
+2
-895
hs_err_pid26067.log
drip-api/hs_err_pid26067.log
+0
-893
DeployService.java
.../main/java/nl/uva/sne/drip/api/service/DeployService.java
+2
-2
No files found.
drip-api/hs_err_pid26067.log
deleted
100644 → 0
View file @
eda23c5d
This diff is collapsed.
Click to expand it.
drip-api/src/main/java/nl/uva/sne/drip/api/service/DeployService.java
View file @
ae9b9098
...
...
@@ -387,7 +387,7 @@ public class DeployService {
for
(
Map
<
String
,
Object
>
port
:
ports
)
{
Set
<
String
>
keys
=
port
.
keySet
();
for
(
String
key
:
keys
)
{
outputs
=
TOSCAUtils
.
buildTOSCAOutput
(
outputs
,
serviceName
,
(
String
)
port
.
get
(
key
),
key
,
false
);
outputs
=
TOSCAUtils
.
buildTOSCAOutput
(
outputs
,
serviceName
,
String
.
valueOf
((
Integer
)
port
.
get
(
key
)
),
key
,
false
);
}
}
...
...
@@ -563,7 +563,7 @@ public class DeployService {
Map
<
String
,
String
>
nodeTypeCache
=
new
HashMap
<>();
Map
<
String
,
String
>
domainCache
=
new
HashMap
<>();
Map
<
String
,
String
>
osTypeCache
=
new
HashMap
<>();
Map
<
String
,
String
>
cloudProviderCache
=
new
HashMap
<>();
for
(
AnsibleOutput
ansOut
:
outputList
)
{
Map
<
String
,
Object
>
map
=
provisionService
.
findOne
(
deployInfo
.
getProvisionID
()).
getKeyValue
();
...
...
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