Skip to content

Commit

Permalink
fix: Added base reference syntax + error handling [DEV-3127] (#338)
Browse files Browse the repository at this point in the history
* fix: Switch to comply with best practices

* Switched ul special character

* Fixed replace

* Fixed undefined behaviour

* Added path specific format

* Fixed extension

* Fixed indentation

* Bump where relevant

* Bump where relevant

* Bump dev deps where relevant

* Switched to optional where applicable

* Switched to cross-dependent

* Regenerate lockfile
  • Loading branch information
Eengineer1 committed Aug 15, 2023
1 parent 654c8c8 commit 4b6048d
Show file tree
Hide file tree
Showing 35 changed files with 949 additions and 754 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@

## [2.8.0-develop.1](https://github.com/cheqd/credential-service/compare/2.7.0...2.8.0-develop.1) (2023-08-10)


### Features

* Account bootstrapping [DEV-3051] ([#306](https://github.com/cheqd/credential-service/issues/306)) ([d157535](https://github.com/cheqd/credential-service/commit/d15753545d0b90d499e083ea6219bf28f97913ff))
* Remove `DEFAULT_CUSTOMER_ID` [DEV-2851] ([#318](https://github.com/cheqd/credential-service/issues/318)) ([c072af6](https://github.com/cheqd/credential-service/commit/c072af6a96ac5485e54b976753fa48f852fd8354))


### Bug Fixes

* Add data reset before each check ([#326](https://github.com/cheqd/credential-service/issues/326)) ([659a120](https://github.com/cheqd/credential-service/commit/659a120e5dd6221d32b0132802c381ca819860a0))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ function create_user_and_database() {
local database=$1
echo " Creating user and database '$database'"
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
CREATE USER $database;
CREATE DATABASE $database;
GRANT ALL PRIVILEGES ON DATABASE $database TO $database;
CREATE USER $database;
CREATE DATABASE $database;
GRANT ALL PRIVILEGES ON DATABASE $database TO $database;
EOSQL
}

Expand Down
Loading

0 comments on commit 4b6048d

Please sign in to comment.