This commit is contained in:
Tan Jiang 2016-02-23 12:42:22 +08:00
parent 9d103d3b09
commit dae7881088
3 changed files with 21 additions and 23 deletions

View File

@ -15,12 +15,10 @@ http {
upstream registry { upstream registry {
server registry:5000; server registry:5000;
# check interval=2000 rise=1 fall=1 timeout=5000 type=tcp;
} }
upstream ui { upstream ui {
server ui:80; server ui:80;
# check interval=2000 rise=1 fall=1 timeout=5000 type=tcp;
} }

View File

@ -39,8 +39,8 @@ ui:
- ./config/ui/app.conf:/etc/ui/app.conf - ./config/ui/app.conf:/etc/ui/app.conf
- ./config/ui/private_key.pem:/etc/ui/private_key.pem - ./config/ui/private_key.pem:/etc/ui/private_key.pem
links: links:
- registry:registry - registry
- mysql:mysql - mysql
- log - log
log_driver: "syslog" log_driver: "syslog"
log_opt: log_opt:
@ -51,8 +51,8 @@ proxy:
volumes: volumes:
- ./config/nginx/nginx.conf:/etc/nginx/nginx.conf - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
links: links:
- ui:ui - ui
- registry:registry - registry
- log - log
ports: ports:
- 80:80 - 80:80

View File

@ -1,16 +1,16 @@
/* /*
Copyright (c) 2016 VMware, Inc. All Rights Reserved. Copyright (c) 2016 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
You may obtain a copy of the License at You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package dao package dao
@ -50,12 +50,12 @@ func isContainIllegalChar(s string, illegalChar []string) bool {
func GenerateRandomString() (string, error) { func GenerateRandomString() (string, error) {
o := orm.NewOrm() o := orm.NewOrm()
var salt string var uuid string
err := o.Raw(`select uuid() as uuid`).QueryRow(&salt) err := o.Raw(`select uuid() as uuid`).QueryRow(&uuid)
if err != nil { if err != nil {
return "", err return "", err
} }
return salt, nil return uuid, nil
} }
@ -112,8 +112,8 @@ func init() {
}() }()
select { select {
case <-ch: case <-ch:
case <-time.After(30 * time.Second): case <-time.After(60 * time.Second):
panic("Failed to connect to DB after 30 seconds") panic("Failed to connect to DB after 60 seconds")
} }
orm.RegisterDataBase("default", "mysql", db_str) orm.RegisterDataBase("default", "mysql", db_str)
} }