Thread

  1. BUG #6410: Windows say a unpleasant warning when stop a pgsql service

    TAKATSUKA Haruka <harukat@sraoss.co.jp> — 2012-01-26T08:08:28Z

    The following bug has been logged on the website:
    
    Bug reference:      6410
    Logged by:          TAKATSUKA Haruka
    Email address:      harukat@sraoss.co.jp
    PostgreSQL version: 9.1.2
    Operating system:   Windows Server 2008 R2
    Description:        
    
    (I also tested 8.3.17, 8.4.9 and 9.2-dev.)
    
    Windows say a unpleasant warning message into the eventlog when stop a pgsql
    service.
    
    Event ID: 1530
    Log Name: Application
    Source: Microsoft-Windows-User Profiles Service
    Description:
     "Windows detected your registry file is still in use by other applications
     or services. The file will be unloaded now. The applications or services
     that hold your registry file may not function properly afterwards."
    
    I added the following lines to the end of pgwin32_ServiceMain() for trial,
    
    ---
    + 	Sleep(1000);
    	pgwin32_SetServiceStatus(SERVICE_STOPPED);
    }
    ---
    
    and I confirmed that the warning message was not output.
    It seems this is not an essential fix, but useful to easily erase
    unpleasant messages.