Skip to content

Commit ead451c

Browse files
author
Jihyung Song
committed
update proto_conf
1 parent 41dbd25 commit ead451c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

bin/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/bash
22
# Build a docker image
33
cd ..
4-
docker build -t pyengine/aws-cloudwatch .
4+
docker build -t pyengine/aws-cloudwatch . --no-cache
55
docker tag pyengine/aws-cloudwatch pyengine/aws-cloudwatch:1.0
66
docker tag pyengine/aws-cloudwatch spaceone/aws-cloudwatch:1.0

pkg/pip_requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
spaceone-core
22
spaceone-api
3+
spaceone-tester
34
boto3
45
schematics

src/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
install_requires=[
3434
'spaceone-core',
3535
'spaceone-api',
36+
'spaceone-tester',
3637
'boto3',
3738
'schematics'
3839
],
+3-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
PROTO = {
2-
'plugin': {
3-
'data_source': ['DataSource'],
4-
'metric': ['Metric'],
5-
'log': ['Log'],
6-
}
2+
'spaceone.monitoring.api.plugin.data_source': ['DataSource'],
3+
'spaceone.monitoring.api.plugin.metric': ['Metric'],
4+
'spaceone.monitoring.api.plugin.log': ['Log'],
75
}

0 commit comments

Comments
 (0)