Compare commits

..

1 Commits

Author SHA1 Message Date
b7463efb45 small refactoring message cleaning
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-06-25 15:56:35 +03:00
2 changed files with 4 additions and 14 deletions

View File

@ -7,14 +7,6 @@ platform:
os: linux os: linux
arch: amd64 arch: amd64
trigger:
branch:
- master
event:
include:
- push
- pull_request
steps: steps:
- name: build - name: build
commands: commands:
@ -24,12 +16,12 @@ steps:
commands: commands:
- make install - make install
when: when:
event: branch:
- push - master
- name: restart - name: restart
commands: commands:
- systemctl restart craft-bot - systemctl restart craft-bot
when: when:
event: branch:
- push - master

View File

@ -74,8 +74,6 @@ func main() {
runHttpServer(ctx, cfg.Http, &wg) runHttpServer(ctx, cfg.Http, &wg)
runSignalHandler(ctx, cancelFunc) runSignalHandler(ctx, cancelFunc)
getLogger(ctx).Infof("Running")
wg.Wait() wg.Wait()
} }