Skip to content

Commit

Permalink
go 1.21.0 に上げる
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Aug 17, 2023
1 parent bdceb1e commit 054c854
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "^1.20"
go-version-file: ./go.mod
cache: false

- run: go install github.com/tcnksm/ghr@latest

Expand Down
21 changes: 21 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
collector_port: 5890

timescale_url: postgres://postgres:[email protected]:5432/kohaku

timescale_sslmode: "disable"
timescale_rootcert_file: ""

# pem なのは前提とする
http2_fullchain_file: ""
http2_privkey_file: ""
http2_verify_cacert_path: "dir"
# TOOD(v): デフォルトは h2c: false にする
http2_h2c: true
http2_max_concurrent_streams: 250
http2_max_read_frame_size: 1048576
http2_idle_timeout: 60

log_dir: .
log_name: kohaku.log
log_debug: true
log_stdout: true
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/shiguredo/kohaku

go 1.20
go 1.21

require (
github.com/go-playground/validator/v10 v10.15.0
Expand Down
3 changes: 3 additions & 0 deletions kohaku.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2023-08-09 02:48:03.332435Z [INFO] FinishInitProcess
2023-08-09 02:49:44.509107Z [INFO] FinishInitProcess
2023-08-09 02:50:37.028999Z [INFO] FinishInitProcess

0 comments on commit 054c854

Please sign in to comment.