Skip to content

Commit

Permalink
chore: update postgres service, fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
armyhaylenko committed Jan 10, 2025
1 parent 1617a7b commit e51aee1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
RUSTFLAGS: "-D warnings -W rust-2021-compatibility"
DEVNET_RPC_URL: "https://api.devnet.solana.com"
MAINNET_RPC_URL: "https://api.mainnet-beta.solana.com"
DATABASE_TEST_URL: "postgres://postgres@127.0.0.1:5432/postgres"
DATABASE_TEST_URL: "postgres://postgres:postgres@127.0.0.1:5432/postgres"

jobs:
lint:
Expand Down Expand Up @@ -71,9 +71,9 @@ jobs:

services:
postgres:
image: bitnami/postgresql:14
image: postgres:14-alpine
env:
ALLOW_EMPTY_PASSWORD: yes
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand Down
2 changes: 1 addition & 1 deletion nft_ingester/src/message_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ fn test_token_account_uninitialized() {
async fn test_edition_pda() {
use std::str::FromStr;

use flatbuffers::FlatBufferBuilder;
use blockbuster::program_handler::ProgramParser;
use blockbuster::programs::token_metadata::{TokenMetadataAccountData, TokenMetadataParser};
use blockbuster::programs::ProgramParseResult;
use flatbuffers::FlatBufferBuilder;
use mpl_token_metadata::accounts::MasterEdition;
use plerkle_serialization::deserializer::PlerkleOptionalU8Vector;
use plerkle_serialization::solana_geyser_plugin_interface_shims::ReplicaAccountInfoV2;
Expand Down

0 comments on commit e51aee1

Please sign in to comment.