Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. You will need to add a new code block within the main shrine {} block:

    Code Block
    languagebash
    themeRDark
    messagequeue {
    	blockingq {
    		serverUrl = “https://shrine_hub_url:6443/shrine-metadata/mom”
    	}
    }
  2. Please take note that the database profile class names have changed: 

    1. slick.driver.MySQLDriver$ to slick.jdbc.MySQLProfile$ 

    2. slick.driver.H2Profile$ to slick.jdbc.H2Profile$ 

    3. slick.driver.PostgresProfile$ to slick.jdbc.PostgresProfile$ 

    4. slick.driver.SQLServerProfile$ to slick.jdbc.SQLServerProfile$ 

    5. slick.driver.JdbcProfile$ to slick.jdbc.JdbcProfile$

    6. slick.driver.OracleProfile$ to slick.jdbc.OracleProfile$
  3. Add externalStewardBaseUrl to the 'emailDataSteward' section under the steward {} block:
    1. externalStewardBaseUrl = "https://your_shrine_url:port/steward"
  4. If you are not using port 6443 to serve SHRINE:

    You will need to override a URL in shrine.conf to see progress and results from QUEUED queries. 

    Code Block
    languagebash
    themerdark
    shrine {
      queryEntryPoint {
        queuedQueryPollUrl = "https://localhost:6443/shrine/rest/i2b2/request" //Change to your port number
      }
    }

     

Sample SHRINE configuration file (for a downstream node)

...