Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for connectionString (1.18 sec)

  1. internal/config/notify/parse.go

    		if cErr != nil {
    			return nil, cErr
    		}
    
    		psqlArgs := target.PostgreSQLArgs{
    			Enable:             enabled,
    			Format:             env.Get(formatEnv, kv.Get(target.PostgresFormat)),
    			ConnectionString:   env.Get(connectionStringEnv, kv.Get(target.PostgresConnectionString)),
    			Table:              env.Get(tableEnv, kv.Get(target.PostgresTable)),
    			QueueDir:           env.Get(queueDirEnv, kv.Get(target.PostgresQueueDir)),
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.5K bytes
    - Viewed (0)
  2. internal/config/config_test.go

    		},
    		// Keys and input order of k=v is same.
    		{
    			input: `connection_string="host=localhost port=2832" comment="really long comment"`,
    			keys:  []string{"connection_string", "comment"},
    			expectedFields: map[string]struct{}{
    				`connection_string="host=localhost port=2832"`: {},
    				`comment="really long comment"`:                {},
    			},
    		},
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    > port                (port)               Postgres server port, defaults to `5432` (used only if `connection_string` is empty)
    > username            (string)             database username (used only if `connection_string` is empty)
    > password            (string)             database password (used only if `connection_string` is empty)
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 84.2K bytes
    - Viewed (0)
Back to top