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

Cleanup, Updated dependencies and added blob sas support #4

Open
wants to merge 43 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7083dea
feat: cleanup and update libraries
Jun 9, 2020
77531b8
fix: use old way of error tuple handling
Jun 9, 2020
55f401f
fix: Add header for content type that was missing
Jun 9, 2020
06d54de
fix: make sure path has / at start
Jun 9, 2020
bd32d35
fix: timeout and dialyzer errors
Jun 10, 2020
916a614
fix: when request method is put add application/octet-stream
Jun 11, 2020
284a163
feat: add ability to create single blob signature
Jun 11, 2020
f4661cf
fix: make poison optional
Jun 11, 2020
b58ad1e
chore: add missing argument
Jun 11, 2020
b3bf92d
fix: use Logger instead of IO.puts to print debug messages
Jun 15, 2020
9bf5f30
feat: add ability to set different host for development mode
Jun 17, 2020
c2d9f85
fix: handle errors from get_block_list in the upload_file function
Jun 18, 2020
aaaa6a2
chore: improve dialyzer typing
Nov 30, 2020
34fdbbd
Merge remote-tracking branch 'origin/master'
Nov 30, 2020
1f637eb
fix: add missing extra application
Nov 30, 2020
8b83eaa
chore: remove some options that aren't valid
Nov 30, 2020
973f483
feat: add ability to set blob name
Jan 11, 2021
15b5513
chore: Use result of Stream instead of Agent
Jan 15, 2021
a21c8cb
chore: Split up `upload_file` into separate functions
Jan 15, 2021
946f9cf
chore: Make "magic numbers" module variables
Jan 15, 2021
3924e3c
chore: Split up upload_async function
Jan 15, 2021
278fb92
chore: Change max number of blocks to module var
Jan 18, 2021
e852097
Merge pull request #2 from bettyblocks/tasks/fix-file-upload-with-dif…
nulian Jan 18, 2021
57c59a1
chore: Return entire response instead of only code
Jan 19, 2021
dbb9e47
Merge branch 'tasks/fix-file-upload-with-different-files'
Jan 19, 2021
aacaa1d
fix: make sure library is compatible with erlang 24
bettyblocks-release-bot Jul 8, 2021
ab09933
fix: make it erlang 24 compatible and upgrade packages
bettyblocks-release-bot Jul 12, 2021
9094e1a
chore: small readme adjustment
bettyblocks-release-bot Jul 13, 2021
16e2ddf
Update README.md
nulian Jan 5, 2022
2480296
Update README.md
nulian Jan 5, 2022
f64855c
feat: update library to latest version
bettyblocks-release-bot Mar 24, 2022
46a0727
chore: add missing files
bettyblocks-release-bot Mar 24, 2022
30c658e
chore: add missing file for test
bettyblocks-release-bot Mar 24, 2022
547b126
Update README.md
nulian Mar 24, 2022
b147de0
Update README.md
nulian Mar 25, 2022
4013f3e
Set blob-headers during upload
Nov 21, 2022
f171156
Merge pull request #4 from bettyblocks/tasks/set-content-type-during-…
nulian Nov 21, 2022
d997718
feat: add support for setting properties on upload file
bettyblocks-release-bot Nov 21, 2022
80a6c24
chore: remove type-check on upload-file
Nov 22, 2022
cc76d3b
Merge pull request #5 from bettyblocks/tasks/set-content-type-during-…
nulian Nov 22, 2022
956169a
chore: bump version number
nulian Nov 22, 2022
e95496f
feat: support parsing blob tags in list_blobs via include
jfro Dec 19, 2022
36ae10b
Merge pull request #6 from AstroHQ/jtk/blob-tags
nulian Jan 23, 2024
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
Prev Previous commit
Next Next commit
fix: make sure path has / at start
  • Loading branch information
Peter Arentsen committed Jun 9, 2020
commit 06d54de45ba9368d9a095c495ce909b4bd87a699
2 changes: 1 addition & 1 deletion lib/microsoft/azure/storage/storage.ex
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ defmodule Microsoft.Azure.Storage do
:table_service -> 10002
end

%URI{scheme: "http", host: "127.0.0.1", port: port, path: context.account_name}
%URI{scheme: "http", host: "127.0.0.1", port: port, path: "/" <> context.account_name}
|> URI.to_string()
end