Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. flavio.campana_0936
    F
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    flavio.campana_0936

    @flavio.campana_0936

    0
    Reputation
    3
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    flavio.campana_0936 Follow

    Best posts made by flavio.campana_0936

    This user hasn't posted anything yet.

    Latest posts made by flavio.campana_0936

    • RE: Buildmaster 7 with docker error at start

      Thanks.
      Which version of Inedo SDk does version 7 requires/support?

      posted in Support
      F
      flavio.campana_0936
    • Buildmaster 7 with docker error at start

      Hello
      I'm having some troubles starting buildmaster 7 with docker, this is the error i get:

      BuildMaster version is 7.0.0.57.
      Current DB schema version is unknown.
      Database is not initialized; initializing...
      Database initialized.
      Executing untracked script DDL-DML/0000. Untracked/10. Block 6.2 Upgrades.sql...
      Executing tracked script DDL-DML/v1-3/0001. 0.0.0/000 SET AUTO_CLOSE.sql...
      ALTER DATABASE statement not allowed within multi-statement transaction.
      This error may be resolved by adding "UseTransaction=False" to the script's AH: header statement.
      

      What can i do?
      Thanks

      ps: the official guide has a mismatch between the command line examples and the table, i needed to use BUILDMASTER_SQL_CONNECTION_STRING and not SQL_CONNECTION_STRING to start buildmaster

      posted in Support
      F
      flavio.campana_0936
    • Differences between sdk classes RemoteExecuteOperation, ExecuteOperation and RemoteJob

      Hello,
      i'm trying to understand what are the differences between these classes in the SDK.
      Looking at examples on github they seems similar, but Remote* classes seems to already be inside the remote machine, so .net code work directly on the server (maybe it's windows only?) while with non-Remote you need to get an agent service with code like

      var fileOps = context.Agent.TryGetService<ILinuxFileOperationsExecuter>()
      var ps = await context.Agent.GetServiceAsync<IRemoteProcessExecuter>().ConfigureAwait(false)
      

      I dont understand exactly the use of RemoteJob classes, what is the correct use for that

      posted in Support
      F
      flavio.campana_0936