Skip to content

Commit

Permalink
try global permissions
Browse files Browse the repository at this point in the history
Signed-off-by: George Mulhearn <gmulhearn@anonyome.com>
  • Loading branch information
gmulhearn-anonyome committed Aug 15, 2024
1 parent de671b3 commit 3838549
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- "**"

permissions:
contents: read
packages: write

env:
DOCKER_BUILDKIT: 1
MAIN_BRANCH: main
Expand Down
2 changes: 1 addition & 1 deletion aries/agents/aath-backchannel/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async fn main() -> std::io::Result<()> {
.service(web::scope("/didcomm").route("", web::post().to(didcomm::receive_message)))
})
.keep_alive(std::time::Duration::from_secs(30))
.client_request_timeout(std::time::Duration::from_secs(32))
.client_request_timeout(std::time::Duration::from_secs(31))
.workers(1)
.bind(format!("{}:{}", host, opts.port))?
.run()
Expand Down

0 comments on commit 3838549

Please sign in to comment.