Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh and fix some AWS Rust SDK API changes #58

Merged
merged 11 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.12']

steps:
- name: Print toolchain versions
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Distribution / packaging
.Python
package-lock.json

# Put stuffs here for your local dev specific purpose
.local/
Expand Down
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"rust-analyzer.linkedProjects": ["lib/workload/stateless/filemanager/Cargo.toml", "skel/rust-api/Cargo.toml"]
}
"rust-analyzer.linkedProjects": [
"lib/workload/stateless/filemanager/Cargo.toml",
"skel/rust-api/Cargo.toml"
]
}
3 changes: 1 addition & 2 deletions lib/workload/stateless/filemanager/.env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# Example env file which sets the DATABASE_URL to a local postgres instance.
#pragma: allowlist secret
DATABASE_URL=postgresql://filemanager:filemanager@localhost:5432/filemanager
DATABASE_URL=postgresql://filemanager:filemanager@localhost:5432/filemanager #pragma: allowlist secret
1 change: 1 addition & 0 deletions lib/workload/stateless/filemanager/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
target/
*.swp
/volume/
.build
Loading